ETH Price: $2,147.93 (-0.45%)

Contract

0x048Ad2d3bEf098A99AAA03e3a26DA5c78Fa910C0
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Token Holdings

More Info

Private Name Tags

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Set Approval For...154525092022-09-01 11:04:161300 days ago1662030256IN
0x048Ad2d3...78Fa910C0
0 ETH0.0006838114.64731795
Set Approval For...144321722022-03-21 21:40:431464 days ago1647898843IN
0x048Ad2d3...78Fa910C0
0 ETH0.0029576163.23889323
Set Approval For...140203892022-01-17 2:38:021527 days ago1642387082IN
0x048Ad2d3...78Fa910C0
0 ETH0.00613257131.12478759
Mint134870862021-10-25 14:15:521611 days ago1635171352IN
0x048Ad2d3...78Fa910C0
0 ETH0.0139579187.71449088
Mint134749022021-10-23 16:37:251613 days ago1635007045IN
0x048Ad2d3...78Fa910C0
0 ETH0.0038194865.85325151
Mint134747572021-10-23 16:05:401613 days ago1635005140IN
0x048Ad2d3...78Fa910C0
0 ETH0.0194397670.4
Mint134689682021-10-22 18:15:491614 days ago1634926549IN
0x048Ad2d3...78Fa910C0
0 ETH0.0140503376.27179142
Withdraw All134675392021-10-22 12:56:531614 days ago1634907413IN
0x048Ad2d3...78Fa910C0
0 ETH0.0020737247.83230556
Mint134673942021-10-22 12:24:271614 days ago1634905467IN
0x048Ad2d3...78Fa910C0
0 ETH0.0162229244.92702983
Mint134673762021-10-22 12:21:121614 days ago1634905272IN
0x048Ad2d3...78Fa910C0
0 ETH0.0024014960.03745011
Mint134669432021-10-22 10:40:041614 days ago1634899204IN
0x048Ad2d3...78Fa910C0
0 ETH0.00711244.06092956
Mint134666102021-10-22 9:23:361614 days ago1634894616IN
0x048Ad2d3...78Fa910C0
0 ETH0.0089315754.39020169
Mint134664992021-10-22 8:57:431614 days ago1634893063IN
0x048Ad2d3...78Fa910C0
0 ETH0.0084725651.59496566
Mint134664632021-10-22 8:48:561614 days ago1634892536IN
0x048Ad2d3...78Fa910C0
0 ETH0.0094520157.55947401
Mint134651032021-10-22 3:36:301614 days ago1634873790IN
0x048Ad2d3...78Fa910C0
0 ETH0.0028462756.92552465
Mint134647472021-10-22 2:13:411614 days ago1634868821IN
0x048Ad2d3...78Fa910C0
0 ETH0.0255770964.23032772
Mint134646972021-10-22 2:03:371614 days ago1634868217IN
0x048Ad2d3...78Fa910C0
0 ETH0.0066043558.76651803
Mint134646882021-10-22 2:02:061614 days ago1634868126IN
0x048Ad2d3...78Fa910C0
0 ETH0.0043272854.09102106
Mint134646602021-10-22 1:57:261614 days ago1634867846IN
0x048Ad2d3...78Fa910C0
0 ETH0.0070111870.95841268
Mint134616132021-10-21 14:42:101615 days ago1634827330IN
0x048Ad2d3...78Fa910C0
0 ETH0.25073615105.02961713
Mint134615092021-10-21 14:18:171615 days ago1634825897IN
0x048Ad2d3...78Fa910C0
0 ETH0.0233176882.9170598
Mint134614962021-10-21 14:15:441615 days ago1634825744IN
0x048Ad2d3...78Fa910C0
0 ETH0.0298172974.87624603
Mint134614352021-10-21 14:03:271615 days ago1634825007IN
0x048Ad2d3...78Fa910C0
0 ETH0.0361233290.71174302
Mint134614312021-10-21 14:02:031615 days ago1634824923IN
0x048Ad2d3...78Fa910C0
0 ETH0.0329788482.81544013
Buy Ticket134614272021-10-21 14:01:091615 days ago1634824869IN
0x048Ad2d3...78Fa910C0
0 ETH0.0031249881.96024824
View all transactions

Latest 4 internal transactions

Advanced mode:
Parent Transaction Hash Method Block
From
To
-134675392021-10-22 12:56:531614 days ago1634907413
0x048Ad2d3...78Fa910C0
0.175 ETH
-134675392021-10-22 12:56:531614 days ago1634907413
0x048Ad2d3...78Fa910C0
0.525 ETH
-134438852021-10-18 20:16:201618 days ago1634588180
0x048Ad2d3...78Fa910C0
0.6625 ETH
-134438852021-10-18 20:16:201618 days ago1634588180
0x048Ad2d3...78Fa910C0
1.9875 ETH
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
LlamaLottery

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license
/**
 *Submitted for verification at Etherscan.io on 2021-10-15
*/

pragma solidity ^0.8.0;



library console {
	address constant CONSOLE_ADDRESS = address(0x000000000000000000636F6e736F6c652e6c6f67);

	function _sendLogPayload(bytes memory payload) private view {
		uint256 payloadLength = payload.length;
		address consoleAddress = CONSOLE_ADDRESS;
		assembly {
			let payloadStart := add(payload, 32)
			let r := staticcall(gas(), consoleAddress, payloadStart, payloadLength, 0, 0)
		}
	}

	function log() internal view {
		_sendLogPayload(abi.encodeWithSignature("log()"));
	}

	function logInt(int p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(int)", p0));
	}

	function logUint(uint p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint)", p0));
	}

	function logString(string memory p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string)", p0));
	}

	function logBool(bool p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool)", p0));
	}

	function logAddress(address p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address)", p0));
	}

	function logBytes(bytes memory p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bytes)", p0));
	}

	function logBytes1(bytes1 p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bytes1)", p0));
	}

	function logBytes2(bytes2 p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bytes2)", p0));
	}

	function logBytes3(bytes3 p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bytes3)", p0));
	}

	function logBytes4(bytes4 p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bytes4)", p0));
	}

	function logBytes5(bytes5 p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bytes5)", p0));
	}

	function logBytes6(bytes6 p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bytes6)", p0));
	}

	function logBytes7(bytes7 p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bytes7)", p0));
	}

	function logBytes8(bytes8 p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bytes8)", p0));
	}

	function logBytes9(bytes9 p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bytes9)", p0));
	}

	function logBytes10(bytes10 p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bytes10)", p0));
	}

	function logBytes11(bytes11 p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bytes11)", p0));
	}

	function logBytes12(bytes12 p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bytes12)", p0));
	}

	function logBytes13(bytes13 p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bytes13)", p0));
	}

	function logBytes14(bytes14 p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bytes14)", p0));
	}

	function logBytes15(bytes15 p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bytes15)", p0));
	}

	function logBytes16(bytes16 p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bytes16)", p0));
	}

	function logBytes17(bytes17 p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bytes17)", p0));
	}

	function logBytes18(bytes18 p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bytes18)", p0));
	}

	function logBytes19(bytes19 p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bytes19)", p0));
	}

	function logBytes20(bytes20 p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bytes20)", p0));
	}

	function logBytes21(bytes21 p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bytes21)", p0));
	}

	function logBytes22(bytes22 p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bytes22)", p0));
	}

	function logBytes23(bytes23 p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bytes23)", p0));
	}

	function logBytes24(bytes24 p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bytes24)", p0));
	}

	function logBytes25(bytes25 p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bytes25)", p0));
	}

	function logBytes26(bytes26 p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bytes26)", p0));
	}

	function logBytes27(bytes27 p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bytes27)", p0));
	}

	function logBytes28(bytes28 p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bytes28)", p0));
	}

	function logBytes29(bytes29 p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bytes29)", p0));
	}

	function logBytes30(bytes30 p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bytes30)", p0));
	}

	function logBytes31(bytes31 p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bytes31)", p0));
	}

	function logBytes32(bytes32 p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bytes32)", p0));
	}

	function log(uint p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint)", p0));
	}

	function log(string memory p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string)", p0));
	}

	function log(bool p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool)", p0));
	}

	function log(address p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address)", p0));
	}

	function log(uint p0, uint p1) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,uint)", p0, p1));
	}

	function log(uint p0, string memory p1) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,string)", p0, p1));
	}

	function log(uint p0, bool p1) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,bool)", p0, p1));
	}

	function log(uint p0, address p1) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,address)", p0, p1));
	}

	function log(string memory p0, uint p1) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,uint)", p0, p1));
	}

	function log(string memory p0, string memory p1) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,string)", p0, p1));
	}

	function log(string memory p0, bool p1) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,bool)", p0, p1));
	}

	function log(string memory p0, address p1) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,address)", p0, p1));
	}

	function log(bool p0, uint p1) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,uint)", p0, p1));
	}

	function log(bool p0, string memory p1) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,string)", p0, p1));
	}

	function log(bool p0, bool p1) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,bool)", p0, p1));
	}

	function log(bool p0, address p1) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,address)", p0, p1));
	}

	function log(address p0, uint p1) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,uint)", p0, p1));
	}

	function log(address p0, string memory p1) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,string)", p0, p1));
	}

	function log(address p0, bool p1) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,bool)", p0, p1));
	}

	function log(address p0, address p1) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,address)", p0, p1));
	}

	function log(uint p0, uint p1, uint p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,uint,uint)", p0, p1, p2));
	}

	function log(uint p0, uint p1, string memory p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,uint,string)", p0, p1, p2));
	}

	function log(uint p0, uint p1, bool p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,uint,bool)", p0, p1, p2));
	}

	function log(uint p0, uint p1, address p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,uint,address)", p0, p1, p2));
	}

	function log(uint p0, string memory p1, uint p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,string,uint)", p0, p1, p2));
	}

	function log(uint p0, string memory p1, string memory p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,string,string)", p0, p1, p2));
	}

	function log(uint p0, string memory p1, bool p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,string,bool)", p0, p1, p2));
	}

	function log(uint p0, string memory p1, address p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,string,address)", p0, p1, p2));
	}

	function log(uint p0, bool p1, uint p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,bool,uint)", p0, p1, p2));
	}

	function log(uint p0, bool p1, string memory p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,bool,string)", p0, p1, p2));
	}

	function log(uint p0, bool p1, bool p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,bool,bool)", p0, p1, p2));
	}

	function log(uint p0, bool p1, address p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,bool,address)", p0, p1, p2));
	}

	function log(uint p0, address p1, uint p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,address,uint)", p0, p1, p2));
	}

	function log(uint p0, address p1, string memory p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,address,string)", p0, p1, p2));
	}

	function log(uint p0, address p1, bool p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,address,bool)", p0, p1, p2));
	}

	function log(uint p0, address p1, address p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,address,address)", p0, p1, p2));
	}

	function log(string memory p0, uint p1, uint p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,uint,uint)", p0, p1, p2));
	}

	function log(string memory p0, uint p1, string memory p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,uint,string)", p0, p1, p2));
	}

	function log(string memory p0, uint p1, bool p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,uint,bool)", p0, p1, p2));
	}

	function log(string memory p0, uint p1, address p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,uint,address)", p0, p1, p2));
	}

	function log(string memory p0, string memory p1, uint p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,string,uint)", p0, p1, p2));
	}

	function log(string memory p0, string memory p1, string memory p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,string,string)", p0, p1, p2));
	}

	function log(string memory p0, string memory p1, bool p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,string,bool)", p0, p1, p2));
	}

	function log(string memory p0, string memory p1, address p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,string,address)", p0, p1, p2));
	}

	function log(string memory p0, bool p1, uint p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,bool,uint)", p0, p1, p2));
	}

	function log(string memory p0, bool p1, string memory p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,bool,string)", p0, p1, p2));
	}

	function log(string memory p0, bool p1, bool p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,bool,bool)", p0, p1, p2));
	}

	function log(string memory p0, bool p1, address p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,bool,address)", p0, p1, p2));
	}

	function log(string memory p0, address p1, uint p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,address,uint)", p0, p1, p2));
	}

	function log(string memory p0, address p1, string memory p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,address,string)", p0, p1, p2));
	}

	function log(string memory p0, address p1, bool p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,address,bool)", p0, p1, p2));
	}

	function log(string memory p0, address p1, address p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,address,address)", p0, p1, p2));
	}

	function log(bool p0, uint p1, uint p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,uint,uint)", p0, p1, p2));
	}

	function log(bool p0, uint p1, string memory p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,uint,string)", p0, p1, p2));
	}

	function log(bool p0, uint p1, bool p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,uint,bool)", p0, p1, p2));
	}

	function log(bool p0, uint p1, address p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,uint,address)", p0, p1, p2));
	}

	function log(bool p0, string memory p1, uint p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,string,uint)", p0, p1, p2));
	}

	function log(bool p0, string memory p1, string memory p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,string,string)", p0, p1, p2));
	}

	function log(bool p0, string memory p1, bool p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,string,bool)", p0, p1, p2));
	}

	function log(bool p0, string memory p1, address p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,string,address)", p0, p1, p2));
	}

	function log(bool p0, bool p1, uint p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,bool,uint)", p0, p1, p2));
	}

	function log(bool p0, bool p1, string memory p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,bool,string)", p0, p1, p2));
	}

	function log(bool p0, bool p1, bool p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,bool,bool)", p0, p1, p2));
	}

	function log(bool p0, bool p1, address p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,bool,address)", p0, p1, p2));
	}

	function log(bool p0, address p1, uint p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,address,uint)", p0, p1, p2));
	}

	function log(bool p0, address p1, string memory p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,address,string)", p0, p1, p2));
	}

	function log(bool p0, address p1, bool p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,address,bool)", p0, p1, p2));
	}

	function log(bool p0, address p1, address p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,address,address)", p0, p1, p2));
	}

	function log(address p0, uint p1, uint p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,uint,uint)", p0, p1, p2));
	}

	function log(address p0, uint p1, string memory p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,uint,string)", p0, p1, p2));
	}

	function log(address p0, uint p1, bool p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,uint,bool)", p0, p1, p2));
	}

	function log(address p0, uint p1, address p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,uint,address)", p0, p1, p2));
	}

	function log(address p0, string memory p1, uint p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,string,uint)", p0, p1, p2));
	}

	function log(address p0, string memory p1, string memory p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,string,string)", p0, p1, p2));
	}

	function log(address p0, string memory p1, bool p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,string,bool)", p0, p1, p2));
	}

	function log(address p0, string memory p1, address p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,string,address)", p0, p1, p2));
	}

	function log(address p0, bool p1, uint p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,bool,uint)", p0, p1, p2));
	}

	function log(address p0, bool p1, string memory p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,bool,string)", p0, p1, p2));
	}

	function log(address p0, bool p1, bool p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,bool,bool)", p0, p1, p2));
	}

	function log(address p0, bool p1, address p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,bool,address)", p0, p1, p2));
	}

	function log(address p0, address p1, uint p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,address,uint)", p0, p1, p2));
	}

	function log(address p0, address p1, string memory p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,address,string)", p0, p1, p2));
	}

	function log(address p0, address p1, bool p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,address,bool)", p0, p1, p2));
	}

	function log(address p0, address p1, address p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,address,address)", p0, p1, p2));
	}

	function log(uint p0, uint p1, uint p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,uint,uint,uint)", p0, p1, p2, p3));
	}

	function log(uint p0, uint p1, uint p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,uint,uint,string)", p0, p1, p2, p3));
	}

	function log(uint p0, uint p1, uint p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,uint,uint,bool)", p0, p1, p2, p3));
	}

	function log(uint p0, uint p1, uint p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,uint,uint,address)", p0, p1, p2, p3));
	}

	function log(uint p0, uint p1, string memory p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,uint,string,uint)", p0, p1, p2, p3));
	}

	function log(uint p0, uint p1, string memory p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,uint,string,string)", p0, p1, p2, p3));
	}

	function log(uint p0, uint p1, string memory p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,uint,string,bool)", p0, p1, p2, p3));
	}

	function log(uint p0, uint p1, string memory p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,uint,string,address)", p0, p1, p2, p3));
	}

	function log(uint p0, uint p1, bool p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,uint,bool,uint)", p0, p1, p2, p3));
	}

	function log(uint p0, uint p1, bool p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,uint,bool,string)", p0, p1, p2, p3));
	}

	function log(uint p0, uint p1, bool p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,uint,bool,bool)", p0, p1, p2, p3));
	}

	function log(uint p0, uint p1, bool p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,uint,bool,address)", p0, p1, p2, p3));
	}

	function log(uint p0, uint p1, address p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,uint,address,uint)", p0, p1, p2, p3));
	}

	function log(uint p0, uint p1, address p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,uint,address,string)", p0, p1, p2, p3));
	}

	function log(uint p0, uint p1, address p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,uint,address,bool)", p0, p1, p2, p3));
	}

	function log(uint p0, uint p1, address p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,uint,address,address)", p0, p1, p2, p3));
	}

	function log(uint p0, string memory p1, uint p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,string,uint,uint)", p0, p1, p2, p3));
	}

	function log(uint p0, string memory p1, uint p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,string,uint,string)", p0, p1, p2, p3));
	}

	function log(uint p0, string memory p1, uint p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,string,uint,bool)", p0, p1, p2, p3));
	}

	function log(uint p0, string memory p1, uint p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,string,uint,address)", p0, p1, p2, p3));
	}

	function log(uint p0, string memory p1, string memory p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,string,string,uint)", p0, p1, p2, p3));
	}

	function log(uint p0, string memory p1, string memory p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,string,string,string)", p0, p1, p2, p3));
	}

	function log(uint p0, string memory p1, string memory p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,string,string,bool)", p0, p1, p2, p3));
	}

	function log(uint p0, string memory p1, string memory p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,string,string,address)", p0, p1, p2, p3));
	}

	function log(uint p0, string memory p1, bool p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,string,bool,uint)", p0, p1, p2, p3));
	}

	function log(uint p0, string memory p1, bool p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,string,bool,string)", p0, p1, p2, p3));
	}

	function log(uint p0, string memory p1, bool p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,string,bool,bool)", p0, p1, p2, p3));
	}

	function log(uint p0, string memory p1, bool p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,string,bool,address)", p0, p1, p2, p3));
	}

	function log(uint p0, string memory p1, address p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,string,address,uint)", p0, p1, p2, p3));
	}

	function log(uint p0, string memory p1, address p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,string,address,string)", p0, p1, p2, p3));
	}

	function log(uint p0, string memory p1, address p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,string,address,bool)", p0, p1, p2, p3));
	}

	function log(uint p0, string memory p1, address p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,string,address,address)", p0, p1, p2, p3));
	}

	function log(uint p0, bool p1, uint p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,bool,uint,uint)", p0, p1, p2, p3));
	}

	function log(uint p0, bool p1, uint p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,bool,uint,string)", p0, p1, p2, p3));
	}

	function log(uint p0, bool p1, uint p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,bool,uint,bool)", p0, p1, p2, p3));
	}

	function log(uint p0, bool p1, uint p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,bool,uint,address)", p0, p1, p2, p3));
	}

	function log(uint p0, bool p1, string memory p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,bool,string,uint)", p0, p1, p2, p3));
	}

	function log(uint p0, bool p1, string memory p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,bool,string,string)", p0, p1, p2, p3));
	}

	function log(uint p0, bool p1, string memory p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,bool,string,bool)", p0, p1, p2, p3));
	}

	function log(uint p0, bool p1, string memory p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,bool,string,address)", p0, p1, p2, p3));
	}

	function log(uint p0, bool p1, bool p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,bool,bool,uint)", p0, p1, p2, p3));
	}

	function log(uint p0, bool p1, bool p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,bool,bool,string)", p0, p1, p2, p3));
	}

	function log(uint p0, bool p1, bool p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,bool,bool,bool)", p0, p1, p2, p3));
	}

	function log(uint p0, bool p1, bool p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,bool,bool,address)", p0, p1, p2, p3));
	}

	function log(uint p0, bool p1, address p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,bool,address,uint)", p0, p1, p2, p3));
	}

	function log(uint p0, bool p1, address p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,bool,address,string)", p0, p1, p2, p3));
	}

	function log(uint p0, bool p1, address p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,bool,address,bool)", p0, p1, p2, p3));
	}

	function log(uint p0, bool p1, address p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,bool,address,address)", p0, p1, p2, p3));
	}

	function log(uint p0, address p1, uint p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,address,uint,uint)", p0, p1, p2, p3));
	}

	function log(uint p0, address p1, uint p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,address,uint,string)", p0, p1, p2, p3));
	}

	function log(uint p0, address p1, uint p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,address,uint,bool)", p0, p1, p2, p3));
	}

	function log(uint p0, address p1, uint p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,address,uint,address)", p0, p1, p2, p3));
	}

	function log(uint p0, address p1, string memory p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,address,string,uint)", p0, p1, p2, p3));
	}

	function log(uint p0, address p1, string memory p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,address,string,string)", p0, p1, p2, p3));
	}

	function log(uint p0, address p1, string memory p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,address,string,bool)", p0, p1, p2, p3));
	}

	function log(uint p0, address p1, string memory p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,address,string,address)", p0, p1, p2, p3));
	}

	function log(uint p0, address p1, bool p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,address,bool,uint)", p0, p1, p2, p3));
	}

	function log(uint p0, address p1, bool p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,address,bool,string)", p0, p1, p2, p3));
	}

	function log(uint p0, address p1, bool p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,address,bool,bool)", p0, p1, p2, p3));
	}

	function log(uint p0, address p1, bool p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,address,bool,address)", p0, p1, p2, p3));
	}

	function log(uint p0, address p1, address p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,address,address,uint)", p0, p1, p2, p3));
	}

	function log(uint p0, address p1, address p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,address,address,string)", p0, p1, p2, p3));
	}

	function log(uint p0, address p1, address p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,address,address,bool)", p0, p1, p2, p3));
	}

	function log(uint p0, address p1, address p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,address,address,address)", p0, p1, p2, p3));
	}

	function log(string memory p0, uint p1, uint p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,uint,uint,uint)", p0, p1, p2, p3));
	}

	function log(string memory p0, uint p1, uint p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,uint,uint,string)", p0, p1, p2, p3));
	}

	function log(string memory p0, uint p1, uint p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,uint,uint,bool)", p0, p1, p2, p3));
	}

	function log(string memory p0, uint p1, uint p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,uint,uint,address)", p0, p1, p2, p3));
	}

	function log(string memory p0, uint p1, string memory p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,uint,string,uint)", p0, p1, p2, p3));
	}

	function log(string memory p0, uint p1, string memory p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,uint,string,string)", p0, p1, p2, p3));
	}

	function log(string memory p0, uint p1, string memory p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,uint,string,bool)", p0, p1, p2, p3));
	}

	function log(string memory p0, uint p1, string memory p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,uint,string,address)", p0, p1, p2, p3));
	}

	function log(string memory p0, uint p1, bool p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,uint,bool,uint)", p0, p1, p2, p3));
	}

	function log(string memory p0, uint p1, bool p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,uint,bool,string)", p0, p1, p2, p3));
	}

	function log(string memory p0, uint p1, bool p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,uint,bool,bool)", p0, p1, p2, p3));
	}

	function log(string memory p0, uint p1, bool p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,uint,bool,address)", p0, p1, p2, p3));
	}

	function log(string memory p0, uint p1, address p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,uint,address,uint)", p0, p1, p2, p3));
	}

	function log(string memory p0, uint p1, address p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,uint,address,string)", p0, p1, p2, p3));
	}

	function log(string memory p0, uint p1, address p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,uint,address,bool)", p0, p1, p2, p3));
	}

	function log(string memory p0, uint p1, address p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,uint,address,address)", p0, p1, p2, p3));
	}

	function log(string memory p0, string memory p1, uint p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,string,uint,uint)", p0, p1, p2, p3));
	}

	function log(string memory p0, string memory p1, uint p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,string,uint,string)", p0, p1, p2, p3));
	}

	function log(string memory p0, string memory p1, uint p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,string,uint,bool)", p0, p1, p2, p3));
	}

	function log(string memory p0, string memory p1, uint p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,string,uint,address)", p0, p1, p2, p3));
	}

	function log(string memory p0, string memory p1, string memory p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,string,string,uint)", p0, p1, p2, p3));
	}

	function log(string memory p0, string memory p1, string memory p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,string,string,string)", p0, p1, p2, p3));
	}

	function log(string memory p0, string memory p1, string memory p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,string,string,bool)", p0, p1, p2, p3));
	}

	function log(string memory p0, string memory p1, string memory p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,string,string,address)", p0, p1, p2, p3));
	}

	function log(string memory p0, string memory p1, bool p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,string,bool,uint)", p0, p1, p2, p3));
	}

	function log(string memory p0, string memory p1, bool p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,string,bool,string)", p0, p1, p2, p3));
	}

	function log(string memory p0, string memory p1, bool p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,string,bool,bool)", p0, p1, p2, p3));
	}

	function log(string memory p0, string memory p1, bool p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,string,bool,address)", p0, p1, p2, p3));
	}

	function log(string memory p0, string memory p1, address p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,string,address,uint)", p0, p1, p2, p3));
	}

	function log(string memory p0, string memory p1, address p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,string,address,string)", p0, p1, p2, p3));
	}

	function log(string memory p0, string memory p1, address p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,string,address,bool)", p0, p1, p2, p3));
	}

	function log(string memory p0, string memory p1, address p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,string,address,address)", p0, p1, p2, p3));
	}

	function log(string memory p0, bool p1, uint p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,bool,uint,uint)", p0, p1, p2, p3));
	}

	function log(string memory p0, bool p1, uint p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,bool,uint,string)", p0, p1, p2, p3));
	}

	function log(string memory p0, bool p1, uint p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,bool,uint,bool)", p0, p1, p2, p3));
	}

	function log(string memory p0, bool p1, uint p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,bool,uint,address)", p0, p1, p2, p3));
	}

	function log(string memory p0, bool p1, string memory p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,bool,string,uint)", p0, p1, p2, p3));
	}

	function log(string memory p0, bool p1, string memory p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,bool,string,string)", p0, p1, p2, p3));
	}

	function log(string memory p0, bool p1, string memory p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,bool,string,bool)", p0, p1, p2, p3));
	}

	function log(string memory p0, bool p1, string memory p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,bool,string,address)", p0, p1, p2, p3));
	}

	function log(string memory p0, bool p1, bool p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,bool,bool,uint)", p0, p1, p2, p3));
	}

	function log(string memory p0, bool p1, bool p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,bool,bool,string)", p0, p1, p2, p3));
	}

	function log(string memory p0, bool p1, bool p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,bool,bool,bool)", p0, p1, p2, p3));
	}

	function log(string memory p0, bool p1, bool p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,bool,bool,address)", p0, p1, p2, p3));
	}

	function log(string memory p0, bool p1, address p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,bool,address,uint)", p0, p1, p2, p3));
	}

	function log(string memory p0, bool p1, address p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,bool,address,string)", p0, p1, p2, p3));
	}

	function log(string memory p0, bool p1, address p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,bool,address,bool)", p0, p1, p2, p3));
	}

	function log(string memory p0, bool p1, address p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,bool,address,address)", p0, p1, p2, p3));
	}

	function log(string memory p0, address p1, uint p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,address,uint,uint)", p0, p1, p2, p3));
	}

	function log(string memory p0, address p1, uint p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,address,uint,string)", p0, p1, p2, p3));
	}

	function log(string memory p0, address p1, uint p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,address,uint,bool)", p0, p1, p2, p3));
	}

	function log(string memory p0, address p1, uint p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,address,uint,address)", p0, p1, p2, p3));
	}

	function log(string memory p0, address p1, string memory p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,address,string,uint)", p0, p1, p2, p3));
	}

	function log(string memory p0, address p1, string memory p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,address,string,string)", p0, p1, p2, p3));
	}

	function log(string memory p0, address p1, string memory p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,address,string,bool)", p0, p1, p2, p3));
	}

	function log(string memory p0, address p1, string memory p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,address,string,address)", p0, p1, p2, p3));
	}

	function log(string memory p0, address p1, bool p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,address,bool,uint)", p0, p1, p2, p3));
	}

	function log(string memory p0, address p1, bool p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,address,bool,string)", p0, p1, p2, p3));
	}

	function log(string memory p0, address p1, bool p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,address,bool,bool)", p0, p1, p2, p3));
	}

	function log(string memory p0, address p1, bool p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,address,bool,address)", p0, p1, p2, p3));
	}

	function log(string memory p0, address p1, address p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,address,address,uint)", p0, p1, p2, p3));
	}

	function log(string memory p0, address p1, address p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,address,address,string)", p0, p1, p2, p3));
	}

	function log(string memory p0, address p1, address p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,address,address,bool)", p0, p1, p2, p3));
	}

	function log(string memory p0, address p1, address p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,address,address,address)", p0, p1, p2, p3));
	}

	function log(bool p0, uint p1, uint p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,uint,uint,uint)", p0, p1, p2, p3));
	}

	function log(bool p0, uint p1, uint p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,uint,uint,string)", p0, p1, p2, p3));
	}

	function log(bool p0, uint p1, uint p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,uint,uint,bool)", p0, p1, p2, p3));
	}

	function log(bool p0, uint p1, uint p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,uint,uint,address)", p0, p1, p2, p3));
	}

	function log(bool p0, uint p1, string memory p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,uint,string,uint)", p0, p1, p2, p3));
	}

	function log(bool p0, uint p1, string memory p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,uint,string,string)", p0, p1, p2, p3));
	}

	function log(bool p0, uint p1, string memory p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,uint,string,bool)", p0, p1, p2, p3));
	}

	function log(bool p0, uint p1, string memory p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,uint,string,address)", p0, p1, p2, p3));
	}

	function log(bool p0, uint p1, bool p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,uint,bool,uint)", p0, p1, p2, p3));
	}

	function log(bool p0, uint p1, bool p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,uint,bool,string)", p0, p1, p2, p3));
	}

	function log(bool p0, uint p1, bool p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,uint,bool,bool)", p0, p1, p2, p3));
	}

	function log(bool p0, uint p1, bool p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,uint,bool,address)", p0, p1, p2, p3));
	}

	function log(bool p0, uint p1, address p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,uint,address,uint)", p0, p1, p2, p3));
	}

	function log(bool p0, uint p1, address p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,uint,address,string)", p0, p1, p2, p3));
	}

	function log(bool p0, uint p1, address p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,uint,address,bool)", p0, p1, p2, p3));
	}

	function log(bool p0, uint p1, address p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,uint,address,address)", p0, p1, p2, p3));
	}

	function log(bool p0, string memory p1, uint p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,string,uint,uint)", p0, p1, p2, p3));
	}

	function log(bool p0, string memory p1, uint p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,string,uint,string)", p0, p1, p2, p3));
	}

	function log(bool p0, string memory p1, uint p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,string,uint,bool)", p0, p1, p2, p3));
	}

	function log(bool p0, string memory p1, uint p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,string,uint,address)", p0, p1, p2, p3));
	}

	function log(bool p0, string memory p1, string memory p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,string,string,uint)", p0, p1, p2, p3));
	}

	function log(bool p0, string memory p1, string memory p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,string,string,string)", p0, p1, p2, p3));
	}

	function log(bool p0, string memory p1, string memory p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,string,string,bool)", p0, p1, p2, p3));
	}

	function log(bool p0, string memory p1, string memory p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,string,string,address)", p0, p1, p2, p3));
	}

	function log(bool p0, string memory p1, bool p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,string,bool,uint)", p0, p1, p2, p3));
	}

	function log(bool p0, string memory p1, bool p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,string,bool,string)", p0, p1, p2, p3));
	}

	function log(bool p0, string memory p1, bool p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,string,bool,bool)", p0, p1, p2, p3));
	}

	function log(bool p0, string memory p1, bool p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,string,bool,address)", p0, p1, p2, p3));
	}

	function log(bool p0, string memory p1, address p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,string,address,uint)", p0, p1, p2, p3));
	}

	function log(bool p0, string memory p1, address p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,string,address,string)", p0, p1, p2, p3));
	}

	function log(bool p0, string memory p1, address p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,string,address,bool)", p0, p1, p2, p3));
	}

	function log(bool p0, string memory p1, address p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,string,address,address)", p0, p1, p2, p3));
	}

	function log(bool p0, bool p1, uint p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,bool,uint,uint)", p0, p1, p2, p3));
	}

	function log(bool p0, bool p1, uint p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,bool,uint,string)", p0, p1, p2, p3));
	}

	function log(bool p0, bool p1, uint p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,bool,uint,bool)", p0, p1, p2, p3));
	}

	function log(bool p0, bool p1, uint p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,bool,uint,address)", p0, p1, p2, p3));
	}

	function log(bool p0, bool p1, string memory p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,bool,string,uint)", p0, p1, p2, p3));
	}

	function log(bool p0, bool p1, string memory p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,bool,string,string)", p0, p1, p2, p3));
	}

	function log(bool p0, bool p1, string memory p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,bool,string,bool)", p0, p1, p2, p3));
	}

	function log(bool p0, bool p1, string memory p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,bool,string,address)", p0, p1, p2, p3));
	}

	function log(bool p0, bool p1, bool p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,bool,bool,uint)", p0, p1, p2, p3));
	}

	function log(bool p0, bool p1, bool p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,bool,bool,string)", p0, p1, p2, p3));
	}

	function log(bool p0, bool p1, bool p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,bool,bool,bool)", p0, p1, p2, p3));
	}

	function log(bool p0, bool p1, bool p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,bool,bool,address)", p0, p1, p2, p3));
	}

	function log(bool p0, bool p1, address p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,bool,address,uint)", p0, p1, p2, p3));
	}

	function log(bool p0, bool p1, address p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,bool,address,string)", p0, p1, p2, p3));
	}

	function log(bool p0, bool p1, address p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,bool,address,bool)", p0, p1, p2, p3));
	}

	function log(bool p0, bool p1, address p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,bool,address,address)", p0, p1, p2, p3));
	}

	function log(bool p0, address p1, uint p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,address,uint,uint)", p0, p1, p2, p3));
	}

	function log(bool p0, address p1, uint p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,address,uint,string)", p0, p1, p2, p3));
	}

	function log(bool p0, address p1, uint p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,address,uint,bool)", p0, p1, p2, p3));
	}

	function log(bool p0, address p1, uint p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,address,uint,address)", p0, p1, p2, p3));
	}

	function log(bool p0, address p1, string memory p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,address,string,uint)", p0, p1, p2, p3));
	}

	function log(bool p0, address p1, string memory p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,address,string,string)", p0, p1, p2, p3));
	}

	function log(bool p0, address p1, string memory p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,address,string,bool)", p0, p1, p2, p3));
	}

	function log(bool p0, address p1, string memory p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,address,string,address)", p0, p1, p2, p3));
	}

	function log(bool p0, address p1, bool p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,address,bool,uint)", p0, p1, p2, p3));
	}

	function log(bool p0, address p1, bool p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,address,bool,string)", p0, p1, p2, p3));
	}

	function log(bool p0, address p1, bool p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,address,bool,bool)", p0, p1, p2, p3));
	}

	function log(bool p0, address p1, bool p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,address,bool,address)", p0, p1, p2, p3));
	}

	function log(bool p0, address p1, address p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,address,address,uint)", p0, p1, p2, p3));
	}

	function log(bool p0, address p1, address p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,address,address,string)", p0, p1, p2, p3));
	}

	function log(bool p0, address p1, address p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,address,address,bool)", p0, p1, p2, p3));
	}

	function log(bool p0, address p1, address p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,address,address,address)", p0, p1, p2, p3));
	}

	function log(address p0, uint p1, uint p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,uint,uint,uint)", p0, p1, p2, p3));
	}

	function log(address p0, uint p1, uint p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,uint,uint,string)", p0, p1, p2, p3));
	}

	function log(address p0, uint p1, uint p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,uint,uint,bool)", p0, p1, p2, p3));
	}

	function log(address p0, uint p1, uint p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,uint,uint,address)", p0, p1, p2, p3));
	}

	function log(address p0, uint p1, string memory p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,uint,string,uint)", p0, p1, p2, p3));
	}

	function log(address p0, uint p1, string memory p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,uint,string,string)", p0, p1, p2, p3));
	}

	function log(address p0, uint p1, string memory p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,uint,string,bool)", p0, p1, p2, p3));
	}

	function log(address p0, uint p1, string memory p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,uint,string,address)", p0, p1, p2, p3));
	}

	function log(address p0, uint p1, bool p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,uint,bool,uint)", p0, p1, p2, p3));
	}

	function log(address p0, uint p1, bool p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,uint,bool,string)", p0, p1, p2, p3));
	}

	function log(address p0, uint p1, bool p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,uint,bool,bool)", p0, p1, p2, p3));
	}

	function log(address p0, uint p1, bool p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,uint,bool,address)", p0, p1, p2, p3));
	}

	function log(address p0, uint p1, address p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,uint,address,uint)", p0, p1, p2, p3));
	}

	function log(address p0, uint p1, address p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,uint,address,string)", p0, p1, p2, p3));
	}

	function log(address p0, uint p1, address p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,uint,address,bool)", p0, p1, p2, p3));
	}

	function log(address p0, uint p1, address p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,uint,address,address)", p0, p1, p2, p3));
	}

	function log(address p0, string memory p1, uint p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,string,uint,uint)", p0, p1, p2, p3));
	}

	function log(address p0, string memory p1, uint p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,string,uint,string)", p0, p1, p2, p3));
	}

	function log(address p0, string memory p1, uint p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,string,uint,bool)", p0, p1, p2, p3));
	}

	function log(address p0, string memory p1, uint p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,string,uint,address)", p0, p1, p2, p3));
	}

	function log(address p0, string memory p1, string memory p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,string,string,uint)", p0, p1, p2, p3));
	}

	function log(address p0, string memory p1, string memory p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,string,string,string)", p0, p1, p2, p3));
	}

	function log(address p0, string memory p1, string memory p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,string,string,bool)", p0, p1, p2, p3));
	}

	function log(address p0, string memory p1, string memory p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,string,string,address)", p0, p1, p2, p3));
	}

	function log(address p0, string memory p1, bool p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,string,bool,uint)", p0, p1, p2, p3));
	}

	function log(address p0, string memory p1, bool p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,string,bool,string)", p0, p1, p2, p3));
	}

	function log(address p0, string memory p1, bool p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,string,bool,bool)", p0, p1, p2, p3));
	}

	function log(address p0, string memory p1, bool p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,string,bool,address)", p0, p1, p2, p3));
	}

	function log(address p0, string memory p1, address p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,string,address,uint)", p0, p1, p2, p3));
	}

	function log(address p0, string memory p1, address p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,string,address,string)", p0, p1, p2, p3));
	}

	function log(address p0, string memory p1, address p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,string,address,bool)", p0, p1, p2, p3));
	}

	function log(address p0, string memory p1, address p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,string,address,address)", p0, p1, p2, p3));
	}

	function log(address p0, bool p1, uint p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,bool,uint,uint)", p0, p1, p2, p3));
	}

	function log(address p0, bool p1, uint p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,bool,uint,string)", p0, p1, p2, p3));
	}

	function log(address p0, bool p1, uint p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,bool,uint,bool)", p0, p1, p2, p3));
	}

	function log(address p0, bool p1, uint p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,bool,uint,address)", p0, p1, p2, p3));
	}

	function log(address p0, bool p1, string memory p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,bool,string,uint)", p0, p1, p2, p3));
	}

	function log(address p0, bool p1, string memory p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,bool,string,string)", p0, p1, p2, p3));
	}

	function log(address p0, bool p1, string memory p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,bool,string,bool)", p0, p1, p2, p3));
	}

	function log(address p0, bool p1, string memory p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,bool,string,address)", p0, p1, p2, p3));
	}

	function log(address p0, bool p1, bool p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,bool,bool,uint)", p0, p1, p2, p3));
	}

	function log(address p0, bool p1, bool p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,bool,bool,string)", p0, p1, p2, p3));
	}

	function log(address p0, bool p1, bool p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,bool,bool,bool)", p0, p1, p2, p3));
	}

	function log(address p0, bool p1, bool p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,bool,bool,address)", p0, p1, p2, p3));
	}

	function log(address p0, bool p1, address p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,bool,address,uint)", p0, p1, p2, p3));
	}

	function log(address p0, bool p1, address p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,bool,address,string)", p0, p1, p2, p3));
	}

	function log(address p0, bool p1, address p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,bool,address,bool)", p0, p1, p2, p3));
	}

	function log(address p0, bool p1, address p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,bool,address,address)", p0, p1, p2, p3));
	}

	function log(address p0, address p1, uint p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,address,uint,uint)", p0, p1, p2, p3));
	}

	function log(address p0, address p1, uint p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,address,uint,string)", p0, p1, p2, p3));
	}

	function log(address p0, address p1, uint p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,address,uint,bool)", p0, p1, p2, p3));
	}

	function log(address p0, address p1, uint p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,address,uint,address)", p0, p1, p2, p3));
	}

	function log(address p0, address p1, string memory p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,address,string,uint)", p0, p1, p2, p3));
	}

	function log(address p0, address p1, string memory p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,address,string,string)", p0, p1, p2, p3));
	}

	function log(address p0, address p1, string memory p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,address,string,bool)", p0, p1, p2, p3));
	}

	function log(address p0, address p1, string memory p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,address,string,address)", p0, p1, p2, p3));
	}

	function log(address p0, address p1, bool p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,address,bool,uint)", p0, p1, p2, p3));
	}

	function log(address p0, address p1, bool p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,address,bool,string)", p0, p1, p2, p3));
	}

	function log(address p0, address p1, bool p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,address,bool,bool)", p0, p1, p2, p3));
	}

	function log(address p0, address p1, bool p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,address,bool,address)", p0, p1, p2, p3));
	}

	function log(address p0, address p1, address p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,address,address,uint)", p0, p1, p2, p3));
	}

	function log(address p0, address p1, address p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,address,address,string)", p0, p1, p2, p3));
	}

	function log(address p0, address p1, address p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,address,address,bool)", p0, p1, p2, p3));
	}

	function log(address p0, address p1, address p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,address,address,address)", p0, p1, p2, p3));
	}

}


/**
 * @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);
}


/**
 * @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;
}


/**
 * @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);
}


/**
 * @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);
}


/**
 * @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;
        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");

        (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");

        (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");

        (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");

        (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

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}


/*
 * @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) {
        return msg.data;
    }
}


/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _HEX_SYMBOLS = "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] = _HEX_SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }
}


/**
 * @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;
    }
}


/**
 * @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}. If set, the resulting URI for each
     * token will be the concatenation of the `baseURI` and the `tokenId`. 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 {
                    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` and `to` are never both zero.
     *
     * 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 {}
}


/**
 * @title ERC721 Burnable Token
 * @dev ERC721 Token that can be irreversibly burned (destroyed).
 */
abstract contract ERC721Burnable is Context, ERC721 {
    /**
     * @dev Burns `tokenId`. See {ERC721-_burn}.
     *
     * Requirements:
     *
     * - The caller must own `tokenId` or be an approved operator.
     */
    function burn(uint256 tokenId) public virtual {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721Burnable: caller is not owner nor approved");
        _burn(tokenId);
    }
}


/**
 * @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);
}


/**
 * @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();
    }
}


/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor() {
        _paused = false;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        require(!paused(), "Pausable: paused");
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        require(paused(), "Pausable: not paused");
        _;
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}


/**
 * @dev ERC721 token with pausable token transfers, minting and burning.
 *
 * Useful for scenarios such as preventing trades until the end of an evaluation
 * period, or having an emergency switch for freezing all token transfers in the
 * event of a large bug.
 */
abstract contract ERC721Pausable is ERC721, Pausable {
    /**
     * @dev See {ERC721-_beforeTokenTransfer}.
     *
     * Requirements:
     *
     * - the contract must not be paused.
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual override {
        super._beforeTokenTransfer(from, to, tokenId);

        require(!paused(), "ERC721Pausable: token transfer while paused");
    }
}


/**
 * @dev ERC721 token with storage based token URI management.
 */
abstract contract ERC721URIStorage is ERC721 {
    using Strings for uint256;

    // Optional mapping for token URIs
    mapping(uint256 => string) private _tokenURIs;

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

        string memory _tokenURI = _tokenURIs[tokenId];
        string memory base = _baseURI();

        // If there is no base URI, return the token URI.
        if (bytes(base).length == 0) {
            return _tokenURI;
        }
        // If both are set, concatenate the baseURI and tokenURI (via abi.encodePacked).
        if (bytes(_tokenURI).length > 0) {
            return string(abi.encodePacked(base, _tokenURI));
        }

        return super.tokenURI(tokenId);
    }

    /**
     * @dev Sets `_tokenURI` as the tokenURI of `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _setTokenURI(uint256 tokenId, string memory _tokenURI) internal virtual {
        require(_exists(tokenId), "ERC721URIStorage: URI set of nonexistent token");
        _tokenURIs[tokenId] = _tokenURI;
    }

    /**
     * @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 override {
        super._burn(tokenId);

        if (bytes(_tokenURIs[tokenId]).length != 0) {
            delete _tokenURIs[tokenId];
        }
    }
}


/**
 * @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() {
        _setOwner(_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 {
        _setOwner(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");
        _setOwner(newOwner);
    }

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}


// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.
/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is no longer needed starting with Solidity 0.8. The compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

//SPDX-License-Identifier: Unlicense
// @title: Llama Lottery
// @author: Llama Lottery Team
contract LlamaLottery is ERC721Enumerable, Ownable, ERC721Burnable, ERC721Pausable {

    using SafeMath for uint256;
    
    bool private presale;
    bool private sale;

    uint256 public constant MAX_ITEMS = 5000;
    uint256 public constant MAX_PRESALE_ITEMS = 500;
    uint256 public PRICE = 0.05 ether;
    uint256 public constant MAX_MINT = 20;
    uint256 public constant MAX_MINT_PRESALE = 5;
    string public baseTokenURI;
    string public PROVENANCE_HASH = "";
    uint256 public REVEAL_TIMESTAMP;
    uint256 public startingIndexBlock;
    uint256 public startingIndex;

    uint256 public curTicketId = 0;
    mapping(address => uint256) public publicNumOfUser;
    mapping(address => uint256) public totalClaimed;

    address private w1 = 0xB6A21ff61C8553Bb901C34eCE548a03990025052;
    address private w2 = 0x18289dCb6e22B9497425384e9AB865b48f19DCc3;

    event CreateLlama(uint256 indexed id);

    constructor(string memory baseURI) ERC721("LlamaLottery", "LlamaLottery") {
        setBaseURI(baseURI);
        pause(true);
        presale = false;
        sale = false;
        REVEAL_TIMESTAMP = block.timestamp + (86400 * 7);
    }

    modifier saleIsOpen {
        require(curTicketId <= MAX_ITEMS, "Sale ended");
        if (_msgSender() != owner()) {
            require(!paused(), "Pausable: paused");
        }
        _;
    }

    function _totalSupply() internal view returns (uint) {
        return curTicketId;
    }

    function totalMint() public view returns (uint256) {
        return _totalSupply();
    }

    function mintReserve(address _to, uint256 _count) public onlyOwner {
        uint256 total = _totalSupply();
        require(total + _count <= MAX_ITEMS, "Max limit");
        for (uint256 i = 0; i < _count; i++) {
            _mintAnElement(_to);
        }
        curTicketId = total.add(_count);
    }

    function presaleMint(address _to, uint256 _count) public payable {
        uint256 total = _totalSupply();
        require(presale == true, "Presale has not yet started");
        require(total + _count <= MAX_PRESALE_ITEMS, "Max limit");
        require(_count <= MAX_MINT_PRESALE, "Exceeds number");
        require(msg.value >= price(_count), "Value below price");

        for (uint256 i = 0; i < _count; i++) {
            _mintAnElement(_to);
        }
        curTicketId = total.add(_count);
    }

    function mint(address _to, uint256 _count) public payable saleIsOpen {
        uint256 total = _totalSupply();
        require(sale == true, "Sale has not yet started");
        require(total + _count <= MAX_ITEMS, "Max limit");
        require(_count <= MAX_MINT, "Exceeds number");
        require(msg.value >= price(_count), "Value below price");

        for (uint256 i = 0; i < _count; i++) {
            _mintAnElement(_to);
        }
        curTicketId = total.add(_count);

        if (startingIndexBlock == 0 && (totalSupply() == MAX_ITEMS || block.timestamp >= REVEAL_TIMESTAMP)) {
            startingIndexBlock = block.number;
        } 
    }

    function _mintAnElement(address _to) private {
        uint id = totalSupply();
        _safeMint(_to, id);
        emit CreateLlama(id);
    }

    function buyTicket(uint256 _count) external payable saleIsOpen {
        uint256 total = _totalSupply();
        require(sale == true, "Sale has not yet started");
        require(total + _count <= MAX_ITEMS, "Max limit");
        require(_count <= MAX_MINT, "Exceeds number");
        require(msg.value >= price(_count), "Value below price");

        publicNumOfUser[_msgSender()] = _count.add(publicNumOfUser[_msgSender()]);
        curTicketId = curTicketId.add(_count);
    }

    function getUserClaimableTicketCount(address user) public view returns (uint256) {
        return publicNumOfUser[user].sub(totalClaimed[user]);
    }

    function claim() external {
        uint256 numbersOfTickets = getUserClaimableTicketCount(_msgSender());
        
        for(uint256 i = 0; i < numbersOfTickets; i++) {
            _mintAnElement(_msgSender());
        }

        totalClaimed[_msgSender()] = numbersOfTickets.add(totalClaimed[_msgSender()]);
    }

    function price(uint256 _count) public view returns (uint256) {
        return PRICE.mul(_count);
    }

    function _baseURI() internal view virtual override returns (string memory) {
        return baseTokenURI;
    }

    function setBaseURI(string memory baseURI) public onlyOwner {
        baseTokenURI = baseURI;
    }

    function setMintPrice(uint256 _price) external onlyOwner {
        PRICE = _price;
    }

    /*     
    * Set provenance once it's calculated
    */
    function setProvenanceHash(string memory _provenanceHash) external onlyOwner {
        PROVENANCE_HASH = _provenanceHash;
    }

    /**
     * Set the starting index for the collection
     */
    function setStartingIndex() external {
        require(startingIndex == 0, "Starting index is already set");
        require(startingIndexBlock != 0, "Starting index block must be set");
        
        startingIndex = uint256(blockhash(startingIndexBlock)) % MAX_ITEMS;
        // Just a sanity case in the worst case if this function is called late (EVM only stores last 256 block hashes)
        if (block.number.sub(startingIndexBlock) > 255) {
            startingIndex = uint256(blockhash(block.number - 1)) % MAX_ITEMS;
        }
        // Prevent default sequence
        if (startingIndex == 0) {
            startingIndex = startingIndex.add(1);
        }
    }

    /**
     * Set the starting index block for the collection, essentially unblocking
     * setting starting index
     */
    function emergencySetStartingIndexBlock() external onlyOwner {
        require(startingIndex == 0, "Starting index is already set");
        
        startingIndexBlock = block.number;
    }

    function walletOfOwner(address _owner) external view returns (uint256[] memory) {
        uint256 tokenCount = balanceOf(_owner);

        uint256[] memory tokenIds = new uint256[](tokenCount);
        for (uint256 i = 0; i < tokenCount; i++) {
            tokenIds[i] = tokenOfOwnerByIndex(_owner, i);
        }

        return tokenIds;
    }

    function pause(bool val) public onlyOwner {
        if (val == true) {
            _pause();
            return;
        }
        _unpause();
    }

    function setPresaleStatus(bool _status) public onlyOwner {
        presale = _status;
    }

    function setSaleStatus(bool _status) public onlyOwner {
        sale = _status;
    }

    function withdrawAll() public payable {
        require(_msgSender() == w1 || _msgSender() == w2, "Withdraw not allowed");
        uint256 balance = address(this).balance;
        require(balance > 0);
        _widthdraw(w1, balance.mul(75).div(100));
        _widthdraw(w2, address(this).balance);
    }

    function _widthdraw(address _address, uint256 _amount) private {
        (bool success,) = _address.call{value : _amount}("");
        require(success, "Transfer failed.");
    }

    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual override(ERC721, ERC721Enumerable, ERC721Pausable) {
        super._beforeTokenTransfer(from, to, tokenId);
    }

    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC721, ERC721Enumerable) returns (bool) {
        return super.supportsInterface(interfaceId);
    }

    receive() external payable {}
}

Contract Security Audit

Contract ABI

API
[{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"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":"uint256","name":"id","type":"uint256"}],"name":"CreateLlama","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":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"MAX_ITEMS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_MINT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_MINT_PRESALE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PRESALE_ITEMS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PROVENANCE_HASH","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"REVEAL_TIMESTAMP","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[],"name":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"buyTicket","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"claim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"curTicketId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"emergencySetStartingIndexBlock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"getUserClaimableTicketCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"mintReserve","outputs":[],"stateMutability":"nonpayable","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":[{"internalType":"bool","name":"val","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"presaleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"publicNumOfUser","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_status","type":"bool"}],"name":"setPresaleStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_provenanceHash","type":"string"}],"name":"setProvenanceHash","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_status","type":"bool"}],"name":"setSaleStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setStartingIndex","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startingIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"startingIndexBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":[{"internalType":"address","name":"","type":"address"}],"name":"totalClaimed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"payable","type":"function"},{"stateMutability":"payable","type":"receive"}]

608060405266b1a2bc2ec50000600b5560405180602001604052806000815250600d9080519060200190620000369291906200065b565b50600060115573b6a21ff61c8553bb901c34ece548a03990025052601460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507318289dcb6e22b9497425384e9ab865b48f19dcc3601560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550348015620000f357600080fd5b50604051620068103803806200681083398181016040528101906200011991906200077d565b6040518060400160405280600c81526020017f4c6c616d614c6f747465727900000000000000000000000000000000000000008152506040518060400160405280600c81526020017f4c6c616d614c6f7474657279000000000000000000000000000000000000000081525081600090805190602001906200019d9291906200065b565b508060019080519060200190620001b69291906200065b565b505050620001d9620001cd6200026b60201b60201c565b6200027360201b60201c565b6000600a60146101000a81548160ff02191690831515021790555062000205816200033960201b60201c565b620002176001620003e460201b60201c565b6000600a60156101000a81548160ff0219169083151502179055506000600a60166101000a81548160ff02191690831515021790555062093a80426200025e91906200093b565b600e819055505062000b91565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620003496200026b60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200036f620004ab60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620003c8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003bf90620008a9565b60405180910390fd5b80600c9080519060200190620003e09291906200065b565b5050565b620003f46200026b60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200041a620004ab60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000473576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200046a90620008a9565b60405180910390fd5b600115158115151415620004975762000491620004d560201b60201c565b620004a8565b620004a76200058d60201b60201c565b5b50565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b620004e56200064460201b60201c565b1562000528576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200051f9062000887565b60405180910390fd5b6001600a60146101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258620005746200026b60201b60201c565b60405162000583919062000848565b60405180910390a1565b6200059d6200064460201b60201c565b620005df576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620005d69062000865565b60405180910390fd5b6000600a60146101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa6200062b6200026b60201b60201c565b6040516200063a919062000848565b60405180910390a1565b6000600a60149054906101000a900460ff16905090565b828054620006699062000a0c565b90600052602060002090601f0160209004810192826200068d5760008555620006d9565b82601f10620006a857805160ff1916838001178555620006d9565b82800160010185558215620006d9579182015b82811115620006d8578251825591602001919060010190620006bb565b5b509050620006e89190620006ec565b5090565b5b8082111562000707576000816000905550600101620006ed565b5090565b6000620007226200071c84620008f4565b620008cb565b9050828152602081018484840111156200073b57600080fd5b62000748848285620009d6565b509392505050565b600082601f8301126200076257600080fd5b8151620007748482602086016200070b565b91505092915050565b6000602082840312156200079057600080fd5b600082015167ffffffffffffffff811115620007ab57600080fd5b620007b98482850162000750565b91505092915050565b620007cd8162000998565b82525050565b6000620007e26014836200092a565b9150620007ef8262000b16565b602082019050919050565b6000620008096010836200092a565b9150620008168262000b3f565b602082019050919050565b6000620008306020836200092a565b91506200083d8262000b68565b602082019050919050565b60006020820190506200085f6000830184620007c2565b92915050565b600060208201905081810360008301526200088081620007d3565b9050919050565b60006020820190508181036000830152620008a281620007fa565b9050919050565b60006020820190508181036000830152620008c48162000821565b9050919050565b6000620008d7620008ea565b9050620008e5828262000a42565b919050565b6000604051905090565b600067ffffffffffffffff82111562000912576200091162000ad6565b5b6200091d8262000b05565b9050602081019050919050565b600082825260208201905092915050565b60006200094882620009cc565b91506200095583620009cc565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156200098d576200098c62000a78565b5b828201905092915050565b6000620009a582620009ac565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b83811015620009f6578082015181840152602081019050620009d9565b8381111562000a06576000848401525b50505050565b6000600282049050600182168062000a2557607f821691505b6020821081141562000a3c5762000a3b62000aa7565b5b50919050565b62000a4d8262000b05565b810181811067ffffffffffffffff8211171562000a6f5762000a6e62000ad6565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b615c6f8062000ba16000396000f3fe6080604052600436106103035760003560e01c8063715018a611610190578063c87b56dd116100dc578063e986655011610095578063f2fde38b1161006f578063f2fde38b14610b41578063f4a0a52814610b6a578063fb2efcd514610b93578063ff1b655614610bd05761030a565b8063e986655014610ac2578063ef5d9ae814610ad9578063f0292a0314610b165761030a565b8063c87b56dd1461099e578063cb774d47146109db578063d547cfb714610a06578063d897833e14610a31578063e36d649814610a5a578063e985e9c514610a855761030a565b80638d859f3e1161014957806395d89b411161012357806395d89b41146109055780639b6a670914610930578063a22cb4651461094c578063b88d4fde146109755761030a565b80638d859f3e146108865780638da5cb5b146108b15780638e825be0146108dc5761030a565b8063715018a6146107cf578063746f90b9146107e65780637d17fcbe146108115780637e95eac414610828578063853828b6146108535780638895283f1461085d5761030a565b806342842e0e1161024f57806357d4c4ee116102085780636352211e116101e25780636352211e146106fc57806367dd74ca1461073957806369cd97681461075557806370a08231146107925761030a565b806357d4c4ee1461067b57806359a7715a146106a65780635c975abb146106d15761030a565b806342842e0e1461056f57806342966c6814610598578063438b6300146105c15780634e71d92d146105fe5780634f6ccce71461061557806355f804b3146106525761030a565b806310969523116102bc57806323b872dd1161029657806323b872dd146104b057806326a49e37146104d95780632f745c591461051657806340c10f19146105535761030a565b8063109695231461043157806318160ddd1461045a57806318e20a38146104855761030a565b806301ffc9a71461030f57806302329a291461034c57806306fdde0314610375578063081812fc146103a0578063095ea7b3146103dd5780630ffc6728146104065761030a565b3661030a57005b600080fd5b34801561031b57600080fd5b5061033660048036038101906103319190614429565b610bfb565b6040516103439190614b7f565b60405180910390f35b34801561035857600080fd5b50610373600480360381019061036e9190614400565b610c0d565b005b34801561038157600080fd5b5061038a610caf565b6040516103979190614b9a565b60405180910390f35b3480156103ac57600080fd5b506103c760048036038101906103c291906144bc565b610d41565b6040516103d49190614af6565b60405180910390f35b3480156103e957600080fd5b5061040460048036038101906103ff91906143c4565b610dc6565b005b34801561041257600080fd5b5061041b610ede565b6040516104289190614fbc565b60405180910390f35b34801561043d57600080fd5b506104586004803603810190610453919061447b565b610ee4565b005b34801561046657600080fd5b5061046f610f7a565b60405161047c9190614fbc565b60405180910390f35b34801561049157600080fd5b5061049a610f87565b6040516104a79190614fbc565b60405180910390f35b3480156104bc57600080fd5b506104d760048036038101906104d291906142be565b610f8d565b005b3480156104e557600080fd5b5061050060048036038101906104fb91906144bc565b610fed565b60405161050d9190614fbc565b60405180910390f35b34801561052257600080fd5b5061053d600480360381019061053891906143c4565b61100b565b60405161054a9190614fbc565b60405180910390f35b61056d600480360381019061056891906143c4565b6110b0565b005b34801561057b57600080fd5b50610596600480360381019061059191906142be565b61133c565b005b3480156105a457600080fd5b506105bf60048036038101906105ba91906144bc565b61135c565b005b3480156105cd57600080fd5b506105e860048036038101906105e39190614259565b6113b8565b6040516105f59190614b5d565b60405180910390f35b34801561060a57600080fd5b506106136114b2565b005b34801561062157600080fd5b5061063c600480360381019061063791906144bc565b61159b565b6040516106499190614fbc565b60405180910390f35b34801561065e57600080fd5b506106796004803603810190610674919061447b565b611632565b005b34801561068757600080fd5b506106906116c8565b60405161069d9190614fbc565b60405180910390f35b3480156106b257600080fd5b506106bb6116ce565b6040516106c89190614fbc565b60405180910390f35b3480156106dd57600080fd5b506106e66116dd565b6040516106f39190614b7f565b60405180910390f35b34801561070857600080fd5b50610723600480360381019061071e91906144bc565b6116f4565b6040516107309190614af6565b60405180910390f35b610753600480360381019061074e91906144bc565b6117a6565b005b34801561076157600080fd5b5061077c60048036038101906107779190614259565b611a7a565b6040516107899190614fbc565b60405180910390f35b34801561079e57600080fd5b506107b960048036038101906107b49190614259565b611b14565b6040516107c69190614fbc565b60405180910390f35b3480156107db57600080fd5b506107e4611bcc565b005b3480156107f257600080fd5b506107fb611c54565b6040516108089190614fbc565b60405180910390f35b34801561081d57600080fd5b50610826611c5a565b005b34801561083457600080fd5b5061083d611d24565b60405161084a9190614fbc565b60405180910390f35b61085b611d29565b005b34801561086957600080fd5b50610884600480360381019061087f9190614400565b611eb2565b005b34801561089257600080fd5b5061089b611f4b565b6040516108a89190614fbc565b60405180910390f35b3480156108bd57600080fd5b506108c6611f51565b6040516108d39190614af6565b60405180910390f35b3480156108e857600080fd5b5061090360048036038101906108fe91906143c4565b611f7b565b005b34801561091157600080fd5b5061091a612099565b6040516109279190614b9a565b60405180910390f35b61094a600480360381019061094591906143c4565b61212b565b005b34801561095857600080fd5b50610973600480360381019061096e9190614388565b6122b2565b005b34801561098157600080fd5b5061099c6004803603810190610997919061430d565b612433565b005b3480156109aa57600080fd5b506109c560048036038101906109c091906144bc565b612495565b6040516109d29190614b9a565b60405180910390f35b3480156109e757600080fd5b506109f061253c565b6040516109fd9190614fbc565b60405180910390f35b348015610a1257600080fd5b50610a1b612542565b604051610a289190614b9a565b60405180910390f35b348015610a3d57600080fd5b50610a586004803603810190610a539190614400565b6125d0565b005b348015610a6657600080fd5b50610a6f612669565b604051610a7c9190614fbc565b60405180910390f35b348015610a9157600080fd5b50610aac6004803603810190610aa79190614282565b61266f565b604051610ab99190614b7f565b60405180910390f35b348015610ace57600080fd5b50610ad7612703565b005b348015610ae557600080fd5b50610b006004803603810190610afb9190614259565b612814565b604051610b0d9190614fbc565b60405180910390f35b348015610b2257600080fd5b50610b2b61282c565b604051610b389190614fbc565b60405180910390f35b348015610b4d57600080fd5b50610b686004803603810190610b639190614259565b612831565b005b348015610b7657600080fd5b50610b916004803603810190610b8c91906144bc565b612929565b005b348015610b9f57600080fd5b50610bba6004803603810190610bb59190614259565b6129af565b604051610bc79190614fbc565b60405180910390f35b348015610bdc57600080fd5b50610be56129c7565b604051610bf29190614b9a565b60405180910390f35b6000610c0682612a55565b9050919050565b610c15612acf565b73ffffffffffffffffffffffffffffffffffffffff16610c33611f51565b73ffffffffffffffffffffffffffffffffffffffff1614610c89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8090614e3c565b60405180910390fd5b600115158115151415610ca357610c9e612ad7565b610cac565b610cab612b7a565b5b50565b606060008054610cbe906152b0565b80601f0160208091040260200160405190810160405280929190818152602001828054610cea906152b0565b8015610d375780601f10610d0c57610100808354040283529160200191610d37565b820191906000526020600020905b815481529060010190602001808311610d1a57829003601f168201915b5050505050905090565b6000610d4c82612c1c565b610d8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8290614e1c565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610dd1826116f4565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3990614edc565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610e61612acf565b73ffffffffffffffffffffffffffffffffffffffff161480610e905750610e8f81610e8a612acf565b61266f565b5b610ecf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ec690614d7c565b60405180910390fd5b610ed98383612c88565b505050565b6101f481565b610eec612acf565b73ffffffffffffffffffffffffffffffffffffffff16610f0a611f51565b73ffffffffffffffffffffffffffffffffffffffff1614610f60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5790614e3c565b60405180910390fd5b80600d9080519060200190610f7692919061407d565b5050565b6000600880549050905090565b600e5481565b610f9e610f98612acf565b82612d41565b610fdd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd490614f5c565b60405180910390fd5b610fe8838383612e1f565b505050565b600061100482600b5461307b90919063ffffffff16565b9050919050565b600061101683611b14565b8210611057576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104e90614c1c565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b61138860115411156110f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ee90614ebc565b60405180910390fd5b6110ff611f51565b73ffffffffffffffffffffffffffffffffffffffff1661111d612acf565b73ffffffffffffffffffffffffffffffffffffffff1614611181576111406116dd565b15611180576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117790614d5c565b60405180910390fd5b5b600061118b613091565b905060011515600a60169054906101000a900460ff161515146111e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111da90614efc565b60405180910390fd5b61138882826111f291906150e5565b1115611233576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122a90614cfc565b60405180910390fd5b6014821115611277576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126e90614bfc565b60405180910390fd5b61128082610fed565b3410156112c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112b990614e9c565b60405180910390fd5b60005b828110156112e9576112d68461309b565b80806112e190615313565b9150506112c5565b506112fd82826130e290919063ffffffff16565b6011819055506000600f5414801561132a575061138861131b610f7a565b14806113295750600e544210155b5b156113375743600f819055505b505050565b61135783838360405180602001604052806000815250612433565b505050565b61136d611367612acf565b82612d41565b6113ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113a390614f9c565b60405180910390fd5b6113b5816130f8565b50565b606060006113c583611b14565b905060008167ffffffffffffffff811115611409577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156114375781602001602082028036833780820191505090505b50905060005b828110156114a75761144f858261100b565b828281518110611488577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001018181525050808061149f90615313565b91505061143d565b508092505050919050565b60006114c46114bf612acf565b611a7a565b905060005b818110156114f4576114e16114dc612acf565b61309b565b80806114ec90615313565b9150506114c9565b5061154e60136000611504612acf565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054826130e290919063ffffffff16565b6013600061155a612acf565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555050565b60006115a5610f7a565b82106115e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115dd90614f7c565b60405180910390fd5b60088281548110611620577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b61163a612acf565b73ffffffffffffffffffffffffffffffffffffffff16611658611f51565b73ffffffffffffffffffffffffffffffffffffffff16146116ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116a590614e3c565b60405180910390fd5b80600c90805190602001906116c492919061407d565b5050565b61138881565b60006116d8613091565b905090565b6000600a60149054906101000a900460ff16905090565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561179d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179490614dbc565b60405180910390fd5b80915050919050565b61138860115411156117ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117e490614ebc565b60405180910390fd5b6117f5611f51565b73ffffffffffffffffffffffffffffffffffffffff16611813612acf565b73ffffffffffffffffffffffffffffffffffffffff1614611877576118366116dd565b15611876576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186d90614d5c565b60405180910390fd5b5b6000611881613091565b905060011515600a60169054906101000a900460ff161515146118d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d090614efc565b60405180910390fd5b61138882826118e891906150e5565b1115611929576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192090614cfc565b60405180910390fd5b601482111561196d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196490614bfc565b60405180910390fd5b61197682610fed565b3410156119b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119af90614e9c565b60405180910390fd5b611a11601260006119c7612acf565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054836130e290919063ffffffff16565b60126000611a1d612acf565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611a70826011546130e290919063ffffffff16565b6011819055505050565b6000611b0d601360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054601260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461320990919063ffffffff16565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611b85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b7c90614d9c565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611bd4612acf565b73ffffffffffffffffffffffffffffffffffffffff16611bf2611f51565b73ffffffffffffffffffffffffffffffffffffffff1614611c48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3f90614e3c565b60405180910390fd5b611c52600061321f565b565b60115481565b611c62612acf565b73ffffffffffffffffffffffffffffffffffffffff16611c80611f51565b73ffffffffffffffffffffffffffffffffffffffff1614611cd6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ccd90614e3c565b60405180910390fd5b600060105414611d1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d1290614d3c565b60405180910390fd5b43600f81905550565b600581565b601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16611d6a612acf565b73ffffffffffffffffffffffffffffffffffffffff161480611de05750601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16611dc8612acf565b73ffffffffffffffffffffffffffffffffffffffff16145b611e1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e1690614ddc565b60405180910390fd5b600047905060008111611e3157600080fd5b611e83601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16611e7e6064611e70604b8661307b90919063ffffffff16565b6132e590919063ffffffff16565b6132fb565b611eaf601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16476132fb565b50565b611eba612acf565b73ffffffffffffffffffffffffffffffffffffffff16611ed8611f51565b73ffffffffffffffffffffffffffffffffffffffff1614611f2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f2590614e3c565b60405180910390fd5b80600a60156101000a81548160ff02191690831515021790555050565b600b5481565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611f83612acf565b73ffffffffffffffffffffffffffffffffffffffff16611fa1611f51565b73ffffffffffffffffffffffffffffffffffffffff1614611ff7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fee90614e3c565b60405180910390fd5b6000612001613091565b9050611388828261201291906150e5565b1115612053576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161204a90614cfc565b60405180910390fd5b60005b8281101561207a576120678461309b565b808061207290615313565b915050612056565b5061208e82826130e290919063ffffffff16565b601181905550505050565b6060600180546120a8906152b0565b80601f01602080910402602001604051908101604052809291908181526020018280546120d4906152b0565b80156121215780601f106120f657610100808354040283529160200191612121565b820191906000526020600020905b81548152906001019060200180831161210457829003601f168201915b5050505050905090565b6000612135613091565b905060011515600a60159054906101000a900460ff1615151461218d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161218490614c7c565b60405180910390fd5b6101f4828261219c91906150e5565b11156121dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121d490614cfc565b60405180910390fd5b6005821115612221576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161221890614bfc565b60405180910390fd5b61222a82610fed565b34101561226c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161226390614e9c565b60405180910390fd5b60005b82811015612293576122808461309b565b808061228b90615313565b91505061226f565b506122a782826130e290919063ffffffff16565b601181905550505050565b6122ba612acf565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612328576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161231f90614cdc565b60405180910390fd5b8060056000612335612acf565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166123e2612acf565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516124279190614b7f565b60405180910390a35050565b61244461243e612acf565b83612d41565b612483576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161247a90614f5c565b60405180910390fd5b61248f848484846133ac565b50505050565b60606124a082612c1c565b6124df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124d690614e7c565b60405180910390fd5b60006124e9613408565b905060008151116125095760405180602001604052806000815250612534565b806125138461349a565b604051602001612524929190614abd565b6040516020818303038152906040525b915050919050565b60105481565b600c805461254f906152b0565b80601f016020809104026020016040519081016040528092919081815260200182805461257b906152b0565b80156125c85780601f1061259d576101008083540402835291602001916125c8565b820191906000526020600020905b8154815290600101906020018083116125ab57829003601f168201915b505050505081565b6125d8612acf565b73ffffffffffffffffffffffffffffffffffffffff166125f6611f51565b73ffffffffffffffffffffffffffffffffffffffff161461264c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161264390614e3c565b60405180910390fd5b80600a60166101000a81548160ff02191690831515021790555050565b600f5481565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600060105414612748576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161273f90614d3c565b60405180910390fd5b6000600f54141561278e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161278590614f1c565b60405180910390fd5b611388600f544060001c6127a2919061535c565b60108190555060ff6127bf600f544361320990919063ffffffff16565b11156127ea576113886001436127d591906151c6565b4060001c6127e3919061535c565b6010819055505b600060105414156128125761280b60016010546130e290919063ffffffff16565b6010819055505b565b60136020528060005260406000206000915090505481565b601481565b612839612acf565b73ffffffffffffffffffffffffffffffffffffffff16612857611f51565b73ffffffffffffffffffffffffffffffffffffffff16146128ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128a490614e3c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561291d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161291490614c5c565b60405180910390fd5b6129268161321f565b50565b612931612acf565b73ffffffffffffffffffffffffffffffffffffffff1661294f611f51565b73ffffffffffffffffffffffffffffffffffffffff16146129a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161299c90614e3c565b60405180910390fd5b80600b8190555050565b60126020528060005260406000206000915090505481565b600d80546129d4906152b0565b80601f0160208091040260200160405190810160405280929190818152602001828054612a00906152b0565b8015612a4d5780601f10612a2257610100808354040283529160200191612a4d565b820191906000526020600020905b815481529060010190602001808311612a3057829003601f168201915b505050505081565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612ac85750612ac782613647565b5b9050919050565b600033905090565b612adf6116dd565b15612b1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b1690614d5c565b60405180910390fd5b6001600a60146101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258612b63612acf565b604051612b709190614af6565b60405180910390a1565b612b826116dd565b612bc1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bb890614bdc565b60405180910390fd5b6000600a60146101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa612c05612acf565b604051612c129190614af6565b60405180910390a1565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612cfb836116f4565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000612d4c82612c1c565b612d8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d8290614d1c565b60405180910390fd5b6000612d96836116f4565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480612e0557508373ffffffffffffffffffffffffffffffffffffffff16612ded84610d41565b73ffffffffffffffffffffffffffffffffffffffff16145b80612e165750612e15818561266f565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612e3f826116f4565b73ffffffffffffffffffffffffffffffffffffffff1614612e95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e8c90614e5c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612f05576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612efc90614cbc565b60405180910390fd5b612f10838383613729565b612f1b600082612c88565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612f6b91906151c6565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612fc291906150e5565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60008183613089919061516c565b905092915050565b6000601154905090565b60006130a5610f7a565b90506130b18282613739565b807ff7a8c83a57c20ec7c266fa214329b2896ef368b671d50d25b0a01f99351f0e1a60405160405180910390a25050565b600081836130f091906150e5565b905092915050565b6000613103826116f4565b905061311181600084613729565b61311c600083612c88565b6001600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461316c91906151c6565b925050819055506002600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6000818361321791906151c6565b905092915050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081836132f3919061513b565b905092915050565b60008273ffffffffffffffffffffffffffffffffffffffff168260405161332190614ae1565b60006040518083038185875af1925050503d806000811461335e576040519150601f19603f3d011682016040523d82523d6000602084013e613363565b606091505b50509050806133a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161339e90614f3c565b60405180910390fd5b505050565b6133b7848484612e1f565b6133c384848484613757565b613402576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133f990614c3c565b60405180910390fd5b50505050565b6060600c8054613417906152b0565b80601f0160208091040260200160405190810160405280929190818152602001828054613443906152b0565b80156134905780601f1061346557610100808354040283529160200191613490565b820191906000526020600020905b81548152906001019060200180831161347357829003601f168201915b5050505050905090565b606060008214156134e2576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613642565b600082905060005b600082146135145780806134fd90615313565b915050600a8261350d919061513b565b91506134ea565b60008167ffffffffffffffff811115613556577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156135885781602001600182028036833780820191505090505b5090505b6000851461363b576001826135a191906151c6565b9150600a856135b0919061535c565b60306135bc91906150e5565b60f81b8183815181106135f8577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85613634919061513b565b945061358c565b8093505050505b919050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061371257507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806137225750613721826138ee565b5b9050919050565b613734838383613958565b505050565b6137538282604051806020016040528060008152506139b0565b5050565b60006137788473ffffffffffffffffffffffffffffffffffffffff16613a0b565b156138e1578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026137a1612acf565b8786866040518563ffffffff1660e01b81526004016137c39493929190614b11565b602060405180830381600087803b1580156137dd57600080fd5b505af192505050801561380e57506040513d601f19601f8201168201806040525081019061380b9190614452565b60015b613891573d806000811461383e576040519150601f19603f3d011682016040523d82523d6000602084013e613843565b606091505b50600081511415613889576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161388090614c3c565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506138e6565b600190505b949350505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b613963838383613a1e565b61396b6116dd565b156139ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016139a290614bbc565b60405180910390fd5b505050565b6139ba8383613b32565b6139c76000848484613757565b613a06576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016139fd90614c3c565b60405180910390fd5b505050565b600080823b905060008111915050919050565b613a29838383613d00565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613a6c57613a6781613d05565b613aab565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614613aaa57613aa98382613d4e565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613aee57613ae981613ebb565b613b2d565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614613b2c57613b2b8282613ffe565b5b5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613ba2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613b9990614dfc565b60405180910390fd5b613bab81612c1c565b15613beb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613be290614c9c565b60405180910390fd5b613bf760008383613729565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613c4791906150e5565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001613d5b84611b14565b613d6591906151c6565b9050600060076000848152602001908152602001600020549050818114613e4a576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050613ecf91906151c6565b9050600060096000848152602001908152602001600020549050600060088381548110613f25577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490508060088381548110613f6d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480613fe2577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b600061400983611b14565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b828054614089906152b0565b90600052602060002090601f0160209004810192826140ab57600085556140f2565b82601f106140c457805160ff19168380011785556140f2565b828001600101855582156140f2579182015b828111156140f15782518255916020019190600101906140d6565b5b5090506140ff9190614103565b5090565b5b8082111561411c576000816000905550600101614104565b5090565b600061413361412e84614ffc565b614fd7565b90508281526020810184848401111561414b57600080fd5b61415684828561526e565b509392505050565b600061417161416c8461502d565b614fd7565b90508281526020810184848401111561418957600080fd5b61419484828561526e565b509392505050565b6000813590506141ab81615bdd565b92915050565b6000813590506141c081615bf4565b92915050565b6000813590506141d581615c0b565b92915050565b6000815190506141ea81615c0b565b92915050565b600082601f83011261420157600080fd5b8135614211848260208601614120565b91505092915050565b600082601f83011261422b57600080fd5b813561423b84826020860161415e565b91505092915050565b60008135905061425381615c22565b92915050565b60006020828403121561426b57600080fd5b60006142798482850161419c565b91505092915050565b6000806040838503121561429557600080fd5b60006142a38582860161419c565b92505060206142b48582860161419c565b9150509250929050565b6000806000606084860312156142d357600080fd5b60006142e18682870161419c565b93505060206142f28682870161419c565b925050604061430386828701614244565b9150509250925092565b6000806000806080858703121561432357600080fd5b60006143318782880161419c565b94505060206143428782880161419c565b935050604061435387828801614244565b925050606085013567ffffffffffffffff81111561437057600080fd5b61437c878288016141f0565b91505092959194509250565b6000806040838503121561439b57600080fd5b60006143a98582860161419c565b92505060206143ba858286016141b1565b9150509250929050565b600080604083850312156143d757600080fd5b60006143e58582860161419c565b92505060206143f685828601614244565b9150509250929050565b60006020828403121561441257600080fd5b6000614420848285016141b1565b91505092915050565b60006020828403121561443b57600080fd5b6000614449848285016141c6565b91505092915050565b60006020828403121561446457600080fd5b6000614472848285016141db565b91505092915050565b60006020828403121561448d57600080fd5b600082013567ffffffffffffffff8111156144a757600080fd5b6144b38482850161421a565b91505092915050565b6000602082840312156144ce57600080fd5b60006144dc84828501614244565b91505092915050565b60006144f18383614a9f565b60208301905092915050565b614506816151fa565b82525050565b60006145178261506e565b614521818561509c565b935061452c8361505e565b8060005b8381101561455d57815161454488826144e5565b975061454f8361508f565b925050600181019050614530565b5085935050505092915050565b6145738161520c565b82525050565b600061458482615079565b61458e81856150ad565b935061459e81856020860161527d565b6145a781615449565b840191505092915050565b60006145bd82615084565b6145c781856150c9565b93506145d781856020860161527d565b6145e081615449565b840191505092915050565b60006145f682615084565b61460081856150da565b935061461081856020860161527d565b80840191505092915050565b6000614629602b836150c9565b91506146348261545a565b604082019050919050565b600061464c6014836150c9565b9150614657826154a9565b602082019050919050565b600061466f600e836150c9565b915061467a826154d2565b602082019050919050565b6000614692602b836150c9565b915061469d826154fb565b604082019050919050565b60006146b56032836150c9565b91506146c08261554a565b604082019050919050565b60006146d86026836150c9565b91506146e382615599565b604082019050919050565b60006146fb601b836150c9565b9150614706826155e8565b602082019050919050565b600061471e601c836150c9565b915061472982615611565b602082019050919050565b60006147416024836150c9565b915061474c8261563a565b604082019050919050565b60006147646019836150c9565b915061476f82615689565b602082019050919050565b60006147876009836150c9565b9150614792826156b2565b602082019050919050565b60006147aa602c836150c9565b91506147b5826156db565b604082019050919050565b60006147cd601d836150c9565b91506147d88261572a565b602082019050919050565b60006147f06010836150c9565b91506147fb82615753565b602082019050919050565b60006148136038836150c9565b915061481e8261577c565b604082019050919050565b6000614836602a836150c9565b9150614841826157cb565b604082019050919050565b60006148596029836150c9565b91506148648261581a565b604082019050919050565b600061487c6014836150c9565b915061488782615869565b602082019050919050565b600061489f6020836150c9565b91506148aa82615892565b602082019050919050565b60006148c2602c836150c9565b91506148cd826158bb565b604082019050919050565b60006148e56020836150c9565b91506148f08261590a565b602082019050919050565b60006149086029836150c9565b915061491382615933565b604082019050919050565b600061492b602f836150c9565b915061493682615982565b604082019050919050565b600061494e6011836150c9565b9150614959826159d1565b602082019050919050565b6000614971600a836150c9565b915061497c826159fa565b602082019050919050565b60006149946021836150c9565b915061499f82615a23565b604082019050919050565b60006149b76018836150c9565b91506149c282615a72565b602082019050919050565b60006149da6020836150c9565b91506149e582615a9b565b602082019050919050565b60006149fd6000836150be565b9150614a0882615ac4565b600082019050919050565b6000614a206010836150c9565b9150614a2b82615ac7565b602082019050919050565b6000614a436031836150c9565b9150614a4e82615af0565b604082019050919050565b6000614a66602c836150c9565b9150614a7182615b3f565b604082019050919050565b6000614a896030836150c9565b9150614a9482615b8e565b604082019050919050565b614aa881615264565b82525050565b614ab781615264565b82525050565b6000614ac982856145eb565b9150614ad582846145eb565b91508190509392505050565b6000614aec826149f0565b9150819050919050565b6000602082019050614b0b60008301846144fd565b92915050565b6000608082019050614b2660008301876144fd565b614b3360208301866144fd565b614b406040830185614aae565b8181036060830152614b528184614579565b905095945050505050565b60006020820190508181036000830152614b77818461450c565b905092915050565b6000602082019050614b94600083018461456a565b92915050565b60006020820190508181036000830152614bb481846145b2565b905092915050565b60006020820190508181036000830152614bd58161461c565b9050919050565b60006020820190508181036000830152614bf58161463f565b9050919050565b60006020820190508181036000830152614c1581614662565b9050919050565b60006020820190508181036000830152614c3581614685565b9050919050565b60006020820190508181036000830152614c55816146a8565b9050919050565b60006020820190508181036000830152614c75816146cb565b9050919050565b60006020820190508181036000830152614c95816146ee565b9050919050565b60006020820190508181036000830152614cb581614711565b9050919050565b60006020820190508181036000830152614cd581614734565b9050919050565b60006020820190508181036000830152614cf581614757565b9050919050565b60006020820190508181036000830152614d158161477a565b9050919050565b60006020820190508181036000830152614d358161479d565b9050919050565b60006020820190508181036000830152614d55816147c0565b9050919050565b60006020820190508181036000830152614d75816147e3565b9050919050565b60006020820190508181036000830152614d9581614806565b9050919050565b60006020820190508181036000830152614db581614829565b9050919050565b60006020820190508181036000830152614dd58161484c565b9050919050565b60006020820190508181036000830152614df58161486f565b9050919050565b60006020820190508181036000830152614e1581614892565b9050919050565b60006020820190508181036000830152614e35816148b5565b9050919050565b60006020820190508181036000830152614e55816148d8565b9050919050565b60006020820190508181036000830152614e75816148fb565b9050919050565b60006020820190508181036000830152614e958161491e565b9050919050565b60006020820190508181036000830152614eb581614941565b9050919050565b60006020820190508181036000830152614ed581614964565b9050919050565b60006020820190508181036000830152614ef581614987565b9050919050565b60006020820190508181036000830152614f15816149aa565b9050919050565b60006020820190508181036000830152614f35816149cd565b9050919050565b60006020820190508181036000830152614f5581614a13565b9050919050565b60006020820190508181036000830152614f7581614a36565b9050919050565b60006020820190508181036000830152614f9581614a59565b9050919050565b60006020820190508181036000830152614fb581614a7c565b9050919050565b6000602082019050614fd16000830184614aae565b92915050565b6000614fe1614ff2565b9050614fed82826152e2565b919050565b6000604051905090565b600067ffffffffffffffff8211156150175761501661541a565b5b61502082615449565b9050602081019050919050565b600067ffffffffffffffff8211156150485761504761541a565b5b61505182615449565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006150f082615264565b91506150fb83615264565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156151305761512f61538d565b5b828201905092915050565b600061514682615264565b915061515183615264565b925082615161576151606153bc565b5b828204905092915050565b600061517782615264565b915061518283615264565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156151bb576151ba61538d565b5b828202905092915050565b60006151d182615264565b91506151dc83615264565b9250828210156151ef576151ee61538d565b5b828203905092915050565b600061520582615244565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561529b578082015181840152602081019050615280565b838111156152aa576000848401525b50505050565b600060028204905060018216806152c857607f821691505b602082108114156152dc576152db6153eb565b5b50919050565b6152eb82615449565b810181811067ffffffffffffffff8211171561530a5761530961541a565b5b80604052505050565b600061531e82615264565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156153515761535061538d565b5b600182019050919050565b600061536782615264565b915061537283615264565b925082615382576153816153bc565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f4552433732315061757361626c653a20746f6b656e207472616e73666572207760008201527f68696c6520706175736564000000000000000000000000000000000000000000602082015250565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f45786365656473206e756d626572000000000000000000000000000000000000600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f50726573616c6520686173206e6f742079657420737461727465640000000000600082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4d6178206c696d69740000000000000000000000000000000000000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f5374617274696e6720696e64657820697320616c726561647920736574000000600082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f5769746864726177206e6f7420616c6c6f776564000000000000000000000000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f56616c75652062656c6f77207072696365000000000000000000000000000000600082015250565b7f53616c6520656e64656400000000000000000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f53616c6520686173206e6f742079657420737461727465640000000000000000600082015250565b7f5374617274696e6720696e64657820626c6f636b206d75737420626520736574600082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656400000000000000000000000000000000602082015250565b615be6816151fa565b8114615bf157600080fd5b50565b615bfd8161520c565b8114615c0857600080fd5b50565b615c1481615218565b8114615c1f57600080fd5b50565b615c2b81615264565b8114615c3657600080fd5b5056fea26469706673582212204734f0bf832cae6991d6ceac37d3f3536fd7e29932f0a467bc71120d0ccffa5364736f6c6343000804003300000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106103035760003560e01c8063715018a611610190578063c87b56dd116100dc578063e986655011610095578063f2fde38b1161006f578063f2fde38b14610b41578063f4a0a52814610b6a578063fb2efcd514610b93578063ff1b655614610bd05761030a565b8063e986655014610ac2578063ef5d9ae814610ad9578063f0292a0314610b165761030a565b8063c87b56dd1461099e578063cb774d47146109db578063d547cfb714610a06578063d897833e14610a31578063e36d649814610a5a578063e985e9c514610a855761030a565b80638d859f3e1161014957806395d89b411161012357806395d89b41146109055780639b6a670914610930578063a22cb4651461094c578063b88d4fde146109755761030a565b80638d859f3e146108865780638da5cb5b146108b15780638e825be0146108dc5761030a565b8063715018a6146107cf578063746f90b9146107e65780637d17fcbe146108115780637e95eac414610828578063853828b6146108535780638895283f1461085d5761030a565b806342842e0e1161024f57806357d4c4ee116102085780636352211e116101e25780636352211e146106fc57806367dd74ca1461073957806369cd97681461075557806370a08231146107925761030a565b806357d4c4ee1461067b57806359a7715a146106a65780635c975abb146106d15761030a565b806342842e0e1461056f57806342966c6814610598578063438b6300146105c15780634e71d92d146105fe5780634f6ccce71461061557806355f804b3146106525761030a565b806310969523116102bc57806323b872dd1161029657806323b872dd146104b057806326a49e37146104d95780632f745c591461051657806340c10f19146105535761030a565b8063109695231461043157806318160ddd1461045a57806318e20a38146104855761030a565b806301ffc9a71461030f57806302329a291461034c57806306fdde0314610375578063081812fc146103a0578063095ea7b3146103dd5780630ffc6728146104065761030a565b3661030a57005b600080fd5b34801561031b57600080fd5b5061033660048036038101906103319190614429565b610bfb565b6040516103439190614b7f565b60405180910390f35b34801561035857600080fd5b50610373600480360381019061036e9190614400565b610c0d565b005b34801561038157600080fd5b5061038a610caf565b6040516103979190614b9a565b60405180910390f35b3480156103ac57600080fd5b506103c760048036038101906103c291906144bc565b610d41565b6040516103d49190614af6565b60405180910390f35b3480156103e957600080fd5b5061040460048036038101906103ff91906143c4565b610dc6565b005b34801561041257600080fd5b5061041b610ede565b6040516104289190614fbc565b60405180910390f35b34801561043d57600080fd5b506104586004803603810190610453919061447b565b610ee4565b005b34801561046657600080fd5b5061046f610f7a565b60405161047c9190614fbc565b60405180910390f35b34801561049157600080fd5b5061049a610f87565b6040516104a79190614fbc565b60405180910390f35b3480156104bc57600080fd5b506104d760048036038101906104d291906142be565b610f8d565b005b3480156104e557600080fd5b5061050060048036038101906104fb91906144bc565b610fed565b60405161050d9190614fbc565b60405180910390f35b34801561052257600080fd5b5061053d600480360381019061053891906143c4565b61100b565b60405161054a9190614fbc565b60405180910390f35b61056d600480360381019061056891906143c4565b6110b0565b005b34801561057b57600080fd5b50610596600480360381019061059191906142be565b61133c565b005b3480156105a457600080fd5b506105bf60048036038101906105ba91906144bc565b61135c565b005b3480156105cd57600080fd5b506105e860048036038101906105e39190614259565b6113b8565b6040516105f59190614b5d565b60405180910390f35b34801561060a57600080fd5b506106136114b2565b005b34801561062157600080fd5b5061063c600480360381019061063791906144bc565b61159b565b6040516106499190614fbc565b60405180910390f35b34801561065e57600080fd5b506106796004803603810190610674919061447b565b611632565b005b34801561068757600080fd5b506106906116c8565b60405161069d9190614fbc565b60405180910390f35b3480156106b257600080fd5b506106bb6116ce565b6040516106c89190614fbc565b60405180910390f35b3480156106dd57600080fd5b506106e66116dd565b6040516106f39190614b7f565b60405180910390f35b34801561070857600080fd5b50610723600480360381019061071e91906144bc565b6116f4565b6040516107309190614af6565b60405180910390f35b610753600480360381019061074e91906144bc565b6117a6565b005b34801561076157600080fd5b5061077c60048036038101906107779190614259565b611a7a565b6040516107899190614fbc565b60405180910390f35b34801561079e57600080fd5b506107b960048036038101906107b49190614259565b611b14565b6040516107c69190614fbc565b60405180910390f35b3480156107db57600080fd5b506107e4611bcc565b005b3480156107f257600080fd5b506107fb611c54565b6040516108089190614fbc565b60405180910390f35b34801561081d57600080fd5b50610826611c5a565b005b34801561083457600080fd5b5061083d611d24565b60405161084a9190614fbc565b60405180910390f35b61085b611d29565b005b34801561086957600080fd5b50610884600480360381019061087f9190614400565b611eb2565b005b34801561089257600080fd5b5061089b611f4b565b6040516108a89190614fbc565b60405180910390f35b3480156108bd57600080fd5b506108c6611f51565b6040516108d39190614af6565b60405180910390f35b3480156108e857600080fd5b5061090360048036038101906108fe91906143c4565b611f7b565b005b34801561091157600080fd5b5061091a612099565b6040516109279190614b9a565b60405180910390f35b61094a600480360381019061094591906143c4565b61212b565b005b34801561095857600080fd5b50610973600480360381019061096e9190614388565b6122b2565b005b34801561098157600080fd5b5061099c6004803603810190610997919061430d565b612433565b005b3480156109aa57600080fd5b506109c560048036038101906109c091906144bc565b612495565b6040516109d29190614b9a565b60405180910390f35b3480156109e757600080fd5b506109f061253c565b6040516109fd9190614fbc565b60405180910390f35b348015610a1257600080fd5b50610a1b612542565b604051610a289190614b9a565b60405180910390f35b348015610a3d57600080fd5b50610a586004803603810190610a539190614400565b6125d0565b005b348015610a6657600080fd5b50610a6f612669565b604051610a7c9190614fbc565b60405180910390f35b348015610a9157600080fd5b50610aac6004803603810190610aa79190614282565b61266f565b604051610ab99190614b7f565b60405180910390f35b348015610ace57600080fd5b50610ad7612703565b005b348015610ae557600080fd5b50610b006004803603810190610afb9190614259565b612814565b604051610b0d9190614fbc565b60405180910390f35b348015610b2257600080fd5b50610b2b61282c565b604051610b389190614fbc565b60405180910390f35b348015610b4d57600080fd5b50610b686004803603810190610b639190614259565b612831565b005b348015610b7657600080fd5b50610b916004803603810190610b8c91906144bc565b612929565b005b348015610b9f57600080fd5b50610bba6004803603810190610bb59190614259565b6129af565b604051610bc79190614fbc565b60405180910390f35b348015610bdc57600080fd5b50610be56129c7565b604051610bf29190614b9a565b60405180910390f35b6000610c0682612a55565b9050919050565b610c15612acf565b73ffffffffffffffffffffffffffffffffffffffff16610c33611f51565b73ffffffffffffffffffffffffffffffffffffffff1614610c89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8090614e3c565b60405180910390fd5b600115158115151415610ca357610c9e612ad7565b610cac565b610cab612b7a565b5b50565b606060008054610cbe906152b0565b80601f0160208091040260200160405190810160405280929190818152602001828054610cea906152b0565b8015610d375780601f10610d0c57610100808354040283529160200191610d37565b820191906000526020600020905b815481529060010190602001808311610d1a57829003601f168201915b5050505050905090565b6000610d4c82612c1c565b610d8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8290614e1c565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610dd1826116f4565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3990614edc565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610e61612acf565b73ffffffffffffffffffffffffffffffffffffffff161480610e905750610e8f81610e8a612acf565b61266f565b5b610ecf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ec690614d7c565b60405180910390fd5b610ed98383612c88565b505050565b6101f481565b610eec612acf565b73ffffffffffffffffffffffffffffffffffffffff16610f0a611f51565b73ffffffffffffffffffffffffffffffffffffffff1614610f60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5790614e3c565b60405180910390fd5b80600d9080519060200190610f7692919061407d565b5050565b6000600880549050905090565b600e5481565b610f9e610f98612acf565b82612d41565b610fdd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd490614f5c565b60405180910390fd5b610fe8838383612e1f565b505050565b600061100482600b5461307b90919063ffffffff16565b9050919050565b600061101683611b14565b8210611057576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104e90614c1c565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b61138860115411156110f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ee90614ebc565b60405180910390fd5b6110ff611f51565b73ffffffffffffffffffffffffffffffffffffffff1661111d612acf565b73ffffffffffffffffffffffffffffffffffffffff1614611181576111406116dd565b15611180576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117790614d5c565b60405180910390fd5b5b600061118b613091565b905060011515600a60169054906101000a900460ff161515146111e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111da90614efc565b60405180910390fd5b61138882826111f291906150e5565b1115611233576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122a90614cfc565b60405180910390fd5b6014821115611277576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126e90614bfc565b60405180910390fd5b61128082610fed565b3410156112c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112b990614e9c565b60405180910390fd5b60005b828110156112e9576112d68461309b565b80806112e190615313565b9150506112c5565b506112fd82826130e290919063ffffffff16565b6011819055506000600f5414801561132a575061138861131b610f7a565b14806113295750600e544210155b5b156113375743600f819055505b505050565b61135783838360405180602001604052806000815250612433565b505050565b61136d611367612acf565b82612d41565b6113ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113a390614f9c565b60405180910390fd5b6113b5816130f8565b50565b606060006113c583611b14565b905060008167ffffffffffffffff811115611409577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156114375781602001602082028036833780820191505090505b50905060005b828110156114a75761144f858261100b565b828281518110611488577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001018181525050808061149f90615313565b91505061143d565b508092505050919050565b60006114c46114bf612acf565b611a7a565b905060005b818110156114f4576114e16114dc612acf565b61309b565b80806114ec90615313565b9150506114c9565b5061154e60136000611504612acf565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054826130e290919063ffffffff16565b6013600061155a612acf565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555050565b60006115a5610f7a565b82106115e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115dd90614f7c565b60405180910390fd5b60088281548110611620577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b61163a612acf565b73ffffffffffffffffffffffffffffffffffffffff16611658611f51565b73ffffffffffffffffffffffffffffffffffffffff16146116ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116a590614e3c565b60405180910390fd5b80600c90805190602001906116c492919061407d565b5050565b61138881565b60006116d8613091565b905090565b6000600a60149054906101000a900460ff16905090565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561179d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179490614dbc565b60405180910390fd5b80915050919050565b61138860115411156117ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117e490614ebc565b60405180910390fd5b6117f5611f51565b73ffffffffffffffffffffffffffffffffffffffff16611813612acf565b73ffffffffffffffffffffffffffffffffffffffff1614611877576118366116dd565b15611876576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186d90614d5c565b60405180910390fd5b5b6000611881613091565b905060011515600a60169054906101000a900460ff161515146118d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d090614efc565b60405180910390fd5b61138882826118e891906150e5565b1115611929576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192090614cfc565b60405180910390fd5b601482111561196d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196490614bfc565b60405180910390fd5b61197682610fed565b3410156119b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119af90614e9c565b60405180910390fd5b611a11601260006119c7612acf565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054836130e290919063ffffffff16565b60126000611a1d612acf565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611a70826011546130e290919063ffffffff16565b6011819055505050565b6000611b0d601360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054601260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461320990919063ffffffff16565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611b85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b7c90614d9c565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611bd4612acf565b73ffffffffffffffffffffffffffffffffffffffff16611bf2611f51565b73ffffffffffffffffffffffffffffffffffffffff1614611c48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3f90614e3c565b60405180910390fd5b611c52600061321f565b565b60115481565b611c62612acf565b73ffffffffffffffffffffffffffffffffffffffff16611c80611f51565b73ffffffffffffffffffffffffffffffffffffffff1614611cd6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ccd90614e3c565b60405180910390fd5b600060105414611d1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d1290614d3c565b60405180910390fd5b43600f81905550565b600581565b601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16611d6a612acf565b73ffffffffffffffffffffffffffffffffffffffff161480611de05750601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16611dc8612acf565b73ffffffffffffffffffffffffffffffffffffffff16145b611e1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e1690614ddc565b60405180910390fd5b600047905060008111611e3157600080fd5b611e83601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16611e7e6064611e70604b8661307b90919063ffffffff16565b6132e590919063ffffffff16565b6132fb565b611eaf601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16476132fb565b50565b611eba612acf565b73ffffffffffffffffffffffffffffffffffffffff16611ed8611f51565b73ffffffffffffffffffffffffffffffffffffffff1614611f2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f2590614e3c565b60405180910390fd5b80600a60156101000a81548160ff02191690831515021790555050565b600b5481565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611f83612acf565b73ffffffffffffffffffffffffffffffffffffffff16611fa1611f51565b73ffffffffffffffffffffffffffffffffffffffff1614611ff7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fee90614e3c565b60405180910390fd5b6000612001613091565b9050611388828261201291906150e5565b1115612053576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161204a90614cfc565b60405180910390fd5b60005b8281101561207a576120678461309b565b808061207290615313565b915050612056565b5061208e82826130e290919063ffffffff16565b601181905550505050565b6060600180546120a8906152b0565b80601f01602080910402602001604051908101604052809291908181526020018280546120d4906152b0565b80156121215780601f106120f657610100808354040283529160200191612121565b820191906000526020600020905b81548152906001019060200180831161210457829003601f168201915b5050505050905090565b6000612135613091565b905060011515600a60159054906101000a900460ff1615151461218d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161218490614c7c565b60405180910390fd5b6101f4828261219c91906150e5565b11156121dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121d490614cfc565b60405180910390fd5b6005821115612221576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161221890614bfc565b60405180910390fd5b61222a82610fed565b34101561226c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161226390614e9c565b60405180910390fd5b60005b82811015612293576122808461309b565b808061228b90615313565b91505061226f565b506122a782826130e290919063ffffffff16565b601181905550505050565b6122ba612acf565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612328576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161231f90614cdc565b60405180910390fd5b8060056000612335612acf565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166123e2612acf565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516124279190614b7f565b60405180910390a35050565b61244461243e612acf565b83612d41565b612483576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161247a90614f5c565b60405180910390fd5b61248f848484846133ac565b50505050565b60606124a082612c1c565b6124df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124d690614e7c565b60405180910390fd5b60006124e9613408565b905060008151116125095760405180602001604052806000815250612534565b806125138461349a565b604051602001612524929190614abd565b6040516020818303038152906040525b915050919050565b60105481565b600c805461254f906152b0565b80601f016020809104026020016040519081016040528092919081815260200182805461257b906152b0565b80156125c85780601f1061259d576101008083540402835291602001916125c8565b820191906000526020600020905b8154815290600101906020018083116125ab57829003601f168201915b505050505081565b6125d8612acf565b73ffffffffffffffffffffffffffffffffffffffff166125f6611f51565b73ffffffffffffffffffffffffffffffffffffffff161461264c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161264390614e3c565b60405180910390fd5b80600a60166101000a81548160ff02191690831515021790555050565b600f5481565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600060105414612748576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161273f90614d3c565b60405180910390fd5b6000600f54141561278e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161278590614f1c565b60405180910390fd5b611388600f544060001c6127a2919061535c565b60108190555060ff6127bf600f544361320990919063ffffffff16565b11156127ea576113886001436127d591906151c6565b4060001c6127e3919061535c565b6010819055505b600060105414156128125761280b60016010546130e290919063ffffffff16565b6010819055505b565b60136020528060005260406000206000915090505481565b601481565b612839612acf565b73ffffffffffffffffffffffffffffffffffffffff16612857611f51565b73ffffffffffffffffffffffffffffffffffffffff16146128ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128a490614e3c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561291d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161291490614c5c565b60405180910390fd5b6129268161321f565b50565b612931612acf565b73ffffffffffffffffffffffffffffffffffffffff1661294f611f51565b73ffffffffffffffffffffffffffffffffffffffff16146129a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161299c90614e3c565b60405180910390fd5b80600b8190555050565b60126020528060005260406000206000915090505481565b600d80546129d4906152b0565b80601f0160208091040260200160405190810160405280929190818152602001828054612a00906152b0565b8015612a4d5780601f10612a2257610100808354040283529160200191612a4d565b820191906000526020600020905b815481529060010190602001808311612a3057829003601f168201915b505050505081565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612ac85750612ac782613647565b5b9050919050565b600033905090565b612adf6116dd565b15612b1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b1690614d5c565b60405180910390fd5b6001600a60146101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258612b63612acf565b604051612b709190614af6565b60405180910390a1565b612b826116dd565b612bc1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bb890614bdc565b60405180910390fd5b6000600a60146101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa612c05612acf565b604051612c129190614af6565b60405180910390a1565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612cfb836116f4565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000612d4c82612c1c565b612d8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d8290614d1c565b60405180910390fd5b6000612d96836116f4565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480612e0557508373ffffffffffffffffffffffffffffffffffffffff16612ded84610d41565b73ffffffffffffffffffffffffffffffffffffffff16145b80612e165750612e15818561266f565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612e3f826116f4565b73ffffffffffffffffffffffffffffffffffffffff1614612e95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e8c90614e5c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612f05576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612efc90614cbc565b60405180910390fd5b612f10838383613729565b612f1b600082612c88565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612f6b91906151c6565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612fc291906150e5565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60008183613089919061516c565b905092915050565b6000601154905090565b60006130a5610f7a565b90506130b18282613739565b807ff7a8c83a57c20ec7c266fa214329b2896ef368b671d50d25b0a01f99351f0e1a60405160405180910390a25050565b600081836130f091906150e5565b905092915050565b6000613103826116f4565b905061311181600084613729565b61311c600083612c88565b6001600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461316c91906151c6565b925050819055506002600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6000818361321791906151c6565b905092915050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081836132f3919061513b565b905092915050565b60008273ffffffffffffffffffffffffffffffffffffffff168260405161332190614ae1565b60006040518083038185875af1925050503d806000811461335e576040519150601f19603f3d011682016040523d82523d6000602084013e613363565b606091505b50509050806133a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161339e90614f3c565b60405180910390fd5b505050565b6133b7848484612e1f565b6133c384848484613757565b613402576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133f990614c3c565b60405180910390fd5b50505050565b6060600c8054613417906152b0565b80601f0160208091040260200160405190810160405280929190818152602001828054613443906152b0565b80156134905780601f1061346557610100808354040283529160200191613490565b820191906000526020600020905b81548152906001019060200180831161347357829003601f168201915b5050505050905090565b606060008214156134e2576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613642565b600082905060005b600082146135145780806134fd90615313565b915050600a8261350d919061513b565b91506134ea565b60008167ffffffffffffffff811115613556577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156135885781602001600182028036833780820191505090505b5090505b6000851461363b576001826135a191906151c6565b9150600a856135b0919061535c565b60306135bc91906150e5565b60f81b8183815181106135f8577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85613634919061513b565b945061358c565b8093505050505b919050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061371257507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806137225750613721826138ee565b5b9050919050565b613734838383613958565b505050565b6137538282604051806020016040528060008152506139b0565b5050565b60006137788473ffffffffffffffffffffffffffffffffffffffff16613a0b565b156138e1578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026137a1612acf565b8786866040518563ffffffff1660e01b81526004016137c39493929190614b11565b602060405180830381600087803b1580156137dd57600080fd5b505af192505050801561380e57506040513d601f19601f8201168201806040525081019061380b9190614452565b60015b613891573d806000811461383e576040519150601f19603f3d011682016040523d82523d6000602084013e613843565b606091505b50600081511415613889576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161388090614c3c565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506138e6565b600190505b949350505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b613963838383613a1e565b61396b6116dd565b156139ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016139a290614bbc565b60405180910390fd5b505050565b6139ba8383613b32565b6139c76000848484613757565b613a06576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016139fd90614c3c565b60405180910390fd5b505050565b600080823b905060008111915050919050565b613a29838383613d00565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613a6c57613a6781613d05565b613aab565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614613aaa57613aa98382613d4e565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613aee57613ae981613ebb565b613b2d565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614613b2c57613b2b8282613ffe565b5b5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613ba2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613b9990614dfc565b60405180910390fd5b613bab81612c1c565b15613beb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613be290614c9c565b60405180910390fd5b613bf760008383613729565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613c4791906150e5565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001613d5b84611b14565b613d6591906151c6565b9050600060076000848152602001908152602001600020549050818114613e4a576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050613ecf91906151c6565b9050600060096000848152602001908152602001600020549050600060088381548110613f25577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490508060088381548110613f6d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480613fe2577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b600061400983611b14565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b828054614089906152b0565b90600052602060002090601f0160209004810192826140ab57600085556140f2565b82601f106140c457805160ff19168380011785556140f2565b828001600101855582156140f2579182015b828111156140f15782518255916020019190600101906140d6565b5b5090506140ff9190614103565b5090565b5b8082111561411c576000816000905550600101614104565b5090565b600061413361412e84614ffc565b614fd7565b90508281526020810184848401111561414b57600080fd5b61415684828561526e565b509392505050565b600061417161416c8461502d565b614fd7565b90508281526020810184848401111561418957600080fd5b61419484828561526e565b509392505050565b6000813590506141ab81615bdd565b92915050565b6000813590506141c081615bf4565b92915050565b6000813590506141d581615c0b565b92915050565b6000815190506141ea81615c0b565b92915050565b600082601f83011261420157600080fd5b8135614211848260208601614120565b91505092915050565b600082601f83011261422b57600080fd5b813561423b84826020860161415e565b91505092915050565b60008135905061425381615c22565b92915050565b60006020828403121561426b57600080fd5b60006142798482850161419c565b91505092915050565b6000806040838503121561429557600080fd5b60006142a38582860161419c565b92505060206142b48582860161419c565b9150509250929050565b6000806000606084860312156142d357600080fd5b60006142e18682870161419c565b93505060206142f28682870161419c565b925050604061430386828701614244565b9150509250925092565b6000806000806080858703121561432357600080fd5b60006143318782880161419c565b94505060206143428782880161419c565b935050604061435387828801614244565b925050606085013567ffffffffffffffff81111561437057600080fd5b61437c878288016141f0565b91505092959194509250565b6000806040838503121561439b57600080fd5b60006143a98582860161419c565b92505060206143ba858286016141b1565b9150509250929050565b600080604083850312156143d757600080fd5b60006143e58582860161419c565b92505060206143f685828601614244565b9150509250929050565b60006020828403121561441257600080fd5b6000614420848285016141b1565b91505092915050565b60006020828403121561443b57600080fd5b6000614449848285016141c6565b91505092915050565b60006020828403121561446457600080fd5b6000614472848285016141db565b91505092915050565b60006020828403121561448d57600080fd5b600082013567ffffffffffffffff8111156144a757600080fd5b6144b38482850161421a565b91505092915050565b6000602082840312156144ce57600080fd5b60006144dc84828501614244565b91505092915050565b60006144f18383614a9f565b60208301905092915050565b614506816151fa565b82525050565b60006145178261506e565b614521818561509c565b935061452c8361505e565b8060005b8381101561455d57815161454488826144e5565b975061454f8361508f565b925050600181019050614530565b5085935050505092915050565b6145738161520c565b82525050565b600061458482615079565b61458e81856150ad565b935061459e81856020860161527d565b6145a781615449565b840191505092915050565b60006145bd82615084565b6145c781856150c9565b93506145d781856020860161527d565b6145e081615449565b840191505092915050565b60006145f682615084565b61460081856150da565b935061461081856020860161527d565b80840191505092915050565b6000614629602b836150c9565b91506146348261545a565b604082019050919050565b600061464c6014836150c9565b9150614657826154a9565b602082019050919050565b600061466f600e836150c9565b915061467a826154d2565b602082019050919050565b6000614692602b836150c9565b915061469d826154fb565b604082019050919050565b60006146b56032836150c9565b91506146c08261554a565b604082019050919050565b60006146d86026836150c9565b91506146e382615599565b604082019050919050565b60006146fb601b836150c9565b9150614706826155e8565b602082019050919050565b600061471e601c836150c9565b915061472982615611565b602082019050919050565b60006147416024836150c9565b915061474c8261563a565b604082019050919050565b60006147646019836150c9565b915061476f82615689565b602082019050919050565b60006147876009836150c9565b9150614792826156b2565b602082019050919050565b60006147aa602c836150c9565b91506147b5826156db565b604082019050919050565b60006147cd601d836150c9565b91506147d88261572a565b602082019050919050565b60006147f06010836150c9565b91506147fb82615753565b602082019050919050565b60006148136038836150c9565b915061481e8261577c565b604082019050919050565b6000614836602a836150c9565b9150614841826157cb565b604082019050919050565b60006148596029836150c9565b91506148648261581a565b604082019050919050565b600061487c6014836150c9565b915061488782615869565b602082019050919050565b600061489f6020836150c9565b91506148aa82615892565b602082019050919050565b60006148c2602c836150c9565b91506148cd826158bb565b604082019050919050565b60006148e56020836150c9565b91506148f08261590a565b602082019050919050565b60006149086029836150c9565b915061491382615933565b604082019050919050565b600061492b602f836150c9565b915061493682615982565b604082019050919050565b600061494e6011836150c9565b9150614959826159d1565b602082019050919050565b6000614971600a836150c9565b915061497c826159fa565b602082019050919050565b60006149946021836150c9565b915061499f82615a23565b604082019050919050565b60006149b76018836150c9565b91506149c282615a72565b602082019050919050565b60006149da6020836150c9565b91506149e582615a9b565b602082019050919050565b60006149fd6000836150be565b9150614a0882615ac4565b600082019050919050565b6000614a206010836150c9565b9150614a2b82615ac7565b602082019050919050565b6000614a436031836150c9565b9150614a4e82615af0565b604082019050919050565b6000614a66602c836150c9565b9150614a7182615b3f565b604082019050919050565b6000614a896030836150c9565b9150614a9482615b8e565b604082019050919050565b614aa881615264565b82525050565b614ab781615264565b82525050565b6000614ac982856145eb565b9150614ad582846145eb565b91508190509392505050565b6000614aec826149f0565b9150819050919050565b6000602082019050614b0b60008301846144fd565b92915050565b6000608082019050614b2660008301876144fd565b614b3360208301866144fd565b614b406040830185614aae565b8181036060830152614b528184614579565b905095945050505050565b60006020820190508181036000830152614b77818461450c565b905092915050565b6000602082019050614b94600083018461456a565b92915050565b60006020820190508181036000830152614bb481846145b2565b905092915050565b60006020820190508181036000830152614bd58161461c565b9050919050565b60006020820190508181036000830152614bf58161463f565b9050919050565b60006020820190508181036000830152614c1581614662565b9050919050565b60006020820190508181036000830152614c3581614685565b9050919050565b60006020820190508181036000830152614c55816146a8565b9050919050565b60006020820190508181036000830152614c75816146cb565b9050919050565b60006020820190508181036000830152614c95816146ee565b9050919050565b60006020820190508181036000830152614cb581614711565b9050919050565b60006020820190508181036000830152614cd581614734565b9050919050565b60006020820190508181036000830152614cf581614757565b9050919050565b60006020820190508181036000830152614d158161477a565b9050919050565b60006020820190508181036000830152614d358161479d565b9050919050565b60006020820190508181036000830152614d55816147c0565b9050919050565b60006020820190508181036000830152614d75816147e3565b9050919050565b60006020820190508181036000830152614d9581614806565b9050919050565b60006020820190508181036000830152614db581614829565b9050919050565b60006020820190508181036000830152614dd58161484c565b9050919050565b60006020820190508181036000830152614df58161486f565b9050919050565b60006020820190508181036000830152614e1581614892565b9050919050565b60006020820190508181036000830152614e35816148b5565b9050919050565b60006020820190508181036000830152614e55816148d8565b9050919050565b60006020820190508181036000830152614e75816148fb565b9050919050565b60006020820190508181036000830152614e958161491e565b9050919050565b60006020820190508181036000830152614eb581614941565b9050919050565b60006020820190508181036000830152614ed581614964565b9050919050565b60006020820190508181036000830152614ef581614987565b9050919050565b60006020820190508181036000830152614f15816149aa565b9050919050565b60006020820190508181036000830152614f35816149cd565b9050919050565b60006020820190508181036000830152614f5581614a13565b9050919050565b60006020820190508181036000830152614f7581614a36565b9050919050565b60006020820190508181036000830152614f9581614a59565b9050919050565b60006020820190508181036000830152614fb581614a7c565b9050919050565b6000602082019050614fd16000830184614aae565b92915050565b6000614fe1614ff2565b9050614fed82826152e2565b919050565b6000604051905090565b600067ffffffffffffffff8211156150175761501661541a565b5b61502082615449565b9050602081019050919050565b600067ffffffffffffffff8211156150485761504761541a565b5b61505182615449565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006150f082615264565b91506150fb83615264565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156151305761512f61538d565b5b828201905092915050565b600061514682615264565b915061515183615264565b925082615161576151606153bc565b5b828204905092915050565b600061517782615264565b915061518283615264565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156151bb576151ba61538d565b5b828202905092915050565b60006151d182615264565b91506151dc83615264565b9250828210156151ef576151ee61538d565b5b828203905092915050565b600061520582615244565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561529b578082015181840152602081019050615280565b838111156152aa576000848401525b50505050565b600060028204905060018216806152c857607f821691505b602082108114156152dc576152db6153eb565b5b50919050565b6152eb82615449565b810181811067ffffffffffffffff8211171561530a5761530961541a565b5b80604052505050565b600061531e82615264565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156153515761535061538d565b5b600182019050919050565b600061536782615264565b915061537283615264565b925082615382576153816153bc565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f4552433732315061757361626c653a20746f6b656e207472616e73666572207760008201527f68696c6520706175736564000000000000000000000000000000000000000000602082015250565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f45786365656473206e756d626572000000000000000000000000000000000000600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f50726573616c6520686173206e6f742079657420737461727465640000000000600082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4d6178206c696d69740000000000000000000000000000000000000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f5374617274696e6720696e64657820697320616c726561647920736574000000600082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f5769746864726177206e6f7420616c6c6f776564000000000000000000000000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f56616c75652062656c6f77207072696365000000000000000000000000000000600082015250565b7f53616c6520656e64656400000000000000000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f53616c6520686173206e6f742079657420737461727465640000000000000000600082015250565b7f5374617274696e6720696e64657820626c6f636b206d75737420626520736574600082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656400000000000000000000000000000000602082015250565b615be6816151fa565b8114615bf157600080fd5b50565b615bfd8161520c565b8114615c0857600080fd5b50565b615c1481615218565b8114615c1f57600080fd5b50565b615c2b81615264565b8114615c3657600080fd5b5056fea26469706673582212204734f0bf832cae6991d6ceac37d3f3536fd7e29932f0a467bc71120d0ccffa5364736f6c63430008040033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : baseURI (string):

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

117594:7696:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;125071:179;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;123959:154;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;84067:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;85626:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;85149:411;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;117825:47;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;122368:129;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;98180:113;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;118088:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;86516:339;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;121864:104;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;97848:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;120041:671;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;86926:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;95594:245;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;123598:353;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;121532:324;;;;;;;;;;;;;:::i;:::-;;98370:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;122097:101;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;117778:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;119099:91;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;104673:86;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;83761:239;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;120875:489;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;121372:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;83491:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;110003:94;;;;;;;;;;;;;:::i;:::-;;118203:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;123396:194;;;;;;;;;;;;;:::i;:::-;;117963:44;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;124317:310;;;:::i;:::-;;124121:93;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;117879:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;109352:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;119198:311;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;84236:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;119517:516;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;85919:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;87182:328;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;84411:334;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;118166:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;118014:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;124222:87;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;118126:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;86285:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;122573:686;;;;;;;;;;;;;:::i;:::-;;118297:47;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;117919:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;110252:192;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;122206:90;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;118240:50;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;118047:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;125071:179;125182:4;125206:36;125230:11;125206:23;:36::i;:::-;125199:43;;125071:179;;;:::o;123959:154::-;109583:12;:10;:12::i;:::-;109572:23;;:7;:5;:7::i;:::-;:23;;;109564:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;124023:4:::1;124016:11;;:3;:11;;;124012:73;;;124044:8;:6;:8::i;:::-;124067:7;;124012:73;124095:10;:8;:10::i;:::-;109643:1;123959:154:::0;:::o;84067:100::-;84121:13;84154:5;84147:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;84067:100;:::o;85626:221::-;85702:7;85730:16;85738:7;85730;:16::i;:::-;85722:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;85815:15;:24;85831:7;85815:24;;;;;;;;;;;;;;;;;;;;;85808:31;;85626:221;;;:::o;85149:411::-;85230:13;85246:23;85261:7;85246:14;:23::i;:::-;85230:39;;85294:5;85288:11;;:2;:11;;;;85280:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;85388:5;85372:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;85397:37;85414:5;85421:12;:10;:12::i;:::-;85397:16;:37::i;:::-;85372:62;85350:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;85531:21;85540:2;85544:7;85531:8;:21::i;:::-;85149:411;;;:::o;117825:47::-;117869:3;117825:47;:::o;122368:129::-;109583:12;:10;:12::i;:::-;109572:23;;:7;:5;:7::i;:::-;:23;;;109564:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;122474:15:::1;122456;:33;;;;;;;;;;;;:::i;:::-;;122368:129:::0;:::o;98180:113::-;98241:7;98268:10;:17;;;;98261:24;;98180:113;:::o;118088:31::-;;;;:::o;86516:339::-;86711:41;86730:12;:10;:12::i;:::-;86744:7;86711:18;:41::i;:::-;86703:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;86819:28;86829:4;86835:2;86839:7;86819:9;:28::i;:::-;86516:339;;;:::o;121864:104::-;121916:7;121943:17;121953:6;121943:5;;:9;;:17;;;;:::i;:::-;121936:24;;121864:104;;;:::o;97848:256::-;97945:7;97981:23;97998:5;97981:16;:23::i;:::-;97973:5;:31;97965:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;98070:12;:19;98083:5;98070:19;;;;;;;;;;;;;;;:26;98090:5;98070:26;;;;;;;;;;;;98063:33;;97848:256;;;;:::o;120041:671::-;117814:4;118830:11;;:24;;118822:47;;;;;;;;;;;;:::i;:::-;;;;;;;;;118900:7;:5;:7::i;:::-;118884:23;;:12;:10;:12::i;:::-;:23;;;118880:94;;118933:8;:6;:8::i;:::-;118932:9;118924:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;118880:94;120121:13:::1;120137:14;:12;:14::i;:::-;120121:30;;120178:4;120170:12;;:4;;;;;;;;;;;:12;;;120162:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;117814:4;120238:6;120230:5;:14;;;;:::i;:::-;:27;;120222:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;117954:2;120290:6;:18;;120282:45;;;;;;;;;;;;:::i;:::-;;;;;;;;;120359:13;120365:6;120359:5;:13::i;:::-;120346:9;:26;;120338:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;120412:9;120407:83;120431:6;120427:1;:10;120407:83;;;120459:19;120474:3;120459:14;:19::i;:::-;120439:3;;;;;:::i;:::-;;;;120407:83;;;;120514:17;120524:6;120514:5;:9;;:17;;;;:::i;:::-;120500:11;:31;;;;120570:1;120548:18;;:23;:94;;;;;117814:4;120576:13;:11;:13::i;:::-;:26;:65;;;;120625:16;;120606:15;:35;;120576:65;120548:94;120544:160;;;120680:12;120659:18;:33;;;;120544:160;118984:1;120041:671:::0;;:::o;86926:185::-;87064:39;87081:4;87087:2;87091:7;87064:39;;;;;;;;;;;;:16;:39::i;:::-;86926:185;;;:::o;95594:245::-;95712:41;95731:12;:10;:12::i;:::-;95745:7;95712:18;:41::i;:::-;95704:102;;;;;;;;;;;;:::i;:::-;;;;;;;;;95817:14;95823:7;95817:5;:14::i;:::-;95594:245;:::o;123598:353::-;123660:16;123689:18;123710:17;123720:6;123710:9;:17::i;:::-;123689:38;;123740:25;123782:10;123768:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;123740:53;;123809:9;123804:112;123828:10;123824:1;:14;123804:112;;;123874:30;123894:6;123902:1;123874:19;:30::i;:::-;123860:8;123869:1;123860:11;;;;;;;;;;;;;;;;;;;;;:44;;;;;123840:3;;;;;:::i;:::-;;;;123804:112;;;;123935:8;123928:15;;;;123598:353;;;:::o;121532:324::-;121569:24;121596:41;121624:12;:10;:12::i;:::-;121596:27;:41::i;:::-;121569:68;;121662:9;121658:101;121681:16;121677:1;:20;121658:101;;;121719:28;121734:12;:10;:12::i;:::-;121719:14;:28::i;:::-;121699:3;;;;;:::i;:::-;;;;121658:101;;;;121800:48;121821:12;:26;121834:12;:10;:12::i;:::-;121821:26;;;;;;;;;;;;;;;;121800:16;:20;;:48;;;;:::i;:::-;121771:12;:26;121784:12;:10;:12::i;:::-;121771:26;;;;;;;;;;;;;;;:77;;;;121532:324;:::o;98370:233::-;98445:7;98481:30;:28;:30::i;:::-;98473:5;:38;98465:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;98578:10;98589:5;98578:17;;;;;;;;;;;;;;;;;;;;;;;;98571:24;;98370:233;;;:::o;122097:101::-;109583:12;:10;:12::i;:::-;109572:23;;:7;:5;:7::i;:::-;:23;;;109564:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;122183:7:::1;122168:12;:22;;;;;;;;;;;;:::i;:::-;;122097:101:::0;:::o;117778:40::-;117814:4;117778:40;:::o;119099:91::-;119141:7;119168:14;:12;:14::i;:::-;119161:21;;119099:91;:::o;104673:86::-;104720:4;104744:7;;;;;;;;;;;104737:14;;104673:86;:::o;83761:239::-;83833:7;83853:13;83869:7;:16;83877:7;83869:16;;;;;;;;;;;;;;;;;;;;;83853:32;;83921:1;83904:19;;:5;:19;;;;83896:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;83987:5;83980:12;;;83761:239;;;:::o;120875:489::-;117814:4;118830:11;;:24;;118822:47;;;;;;;;;;;;:::i;:::-;;;;;;;;;118900:7;:5;:7::i;:::-;118884:23;;:12;:10;:12::i;:::-;:23;;;118880:94;;118933:8;:6;:8::i;:::-;118932:9;118924:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;118880:94;120949:13:::1;120965:14;:12;:14::i;:::-;120949:30;;121006:4;120998:12;;:4;;;;;;;;;;;:12;;;120990:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;117814:4;121066:6;121058:5;:14;;;;:::i;:::-;:27;;121050:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;117954:2;121118:6;:18;;121110:45;;;;;;;;;;;;:::i;:::-;;;;;;;;;121187:13;121193:6;121187:5;:13::i;:::-;121174:9;:26;;121166:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;121267:41;121278:15;:29;121294:12;:10;:12::i;:::-;121278:29;;;;;;;;;;;;;;;;121267:6;:10;;:41;;;;:::i;:::-;121235:15;:29;121251:12;:10;:12::i;:::-;121235:29;;;;;;;;;;;;;;;:73;;;;121333:23;121349:6;121333:11;;:15;;:23;;;;:::i;:::-;121319:11;:37;;;;118984:1;120875:489:::0;:::o;121372:152::-;121444:7;121471:45;121497:12;:18;121510:4;121497:18;;;;;;;;;;;;;;;;121471:15;:21;121487:4;121471:21;;;;;;;;;;;;;;;;:25;;:45;;;;:::i;:::-;121464:52;;121372:152;;;:::o;83491:208::-;83563:7;83608:1;83591:19;;:5;:19;;;;83583:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;83675:9;:16;83685:5;83675:16;;;;;;;;;;;;;;;;83668:23;;83491:208;;;:::o;110003:94::-;109583:12;:10;:12::i;:::-;109572:23;;:7;:5;:7::i;:::-;:23;;;109564:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;110068:21:::1;110086:1;110068:9;:21::i;:::-;110003:94::o:0;118203:30::-;;;;:::o;123396:194::-;109583:12;:10;:12::i;:::-;109572:23;;:7;:5;:7::i;:::-;:23;;;109564:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;123493:1:::1;123476:13;;:18;123468:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;123570:12;123549:18;:33;;;;123396:194::o:0;117963:44::-;118006:1;117963:44;:::o;124317:310::-;124390:2;;;;;;;;;;;124374:18;;:12;:10;:12::i;:::-;:18;;;:40;;;;124412:2;;;;;;;;;;;124396:18;;:12;:10;:12::i;:::-;:18;;;124374:40;124366:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;124450:15;124468:21;124450:39;;124518:1;124508:7;:11;124500:20;;;;;;124531:40;124542:2;;;;;;;;;;;124546:24;124566:3;124546:15;124558:2;124546:7;:11;;:15;;;;:::i;:::-;:19;;:24;;;;:::i;:::-;124531:10;:40::i;:::-;124582:37;124593:2;;;;;;;;;;;124597:21;124582:10;:37::i;:::-;124317:310;:::o;124121:93::-;109583:12;:10;:12::i;:::-;109572:23;;:7;:5;:7::i;:::-;:23;;;109564:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;124199:7:::1;124189;;:17;;;;;;;;;;;;;;;;;;124121:93:::0;:::o;117879:33::-;;;;:::o;109352:87::-;109398:7;109425:6;;;;;;;;;;;109418:13;;109352:87;:::o;119198:311::-;109583:12;:10;:12::i;:::-;109572:23;;:7;:5;:7::i;:::-;:23;;;109564:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;119276:13:::1;119292:14;:12;:14::i;:::-;119276:30;;117814:4;119333:6;119325:5;:14;;;;:::i;:::-;:27;;119317:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;119382:9;119377:83;119401:6;119397:1;:10;119377:83;;;119429:19;119444:3;119429:14;:19::i;:::-;119409:3;;;;;:::i;:::-;;;;119377:83;;;;119484:17;119494:6;119484:5;:9;;:17;;;;:::i;:::-;119470:11;:31;;;;109643:1;119198:311:::0;;:::o;84236:104::-;84292:13;84325:7;84318:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;84236:104;:::o;119517:516::-;119593:13;119609:14;:12;:14::i;:::-;119593:30;;119653:4;119642:15;;:7;;;;;;;;;;;:15;;;119634:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;117869:3;119716:6;119708:5;:14;;;;:::i;:::-;:35;;119700:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;118006:1;119776:6;:26;;119768:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;119853:13;119859:6;119853:5;:13::i;:::-;119840:9;:26;;119832:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;119906:9;119901:83;119925:6;119921:1;:10;119901:83;;;119953:19;119968:3;119953:14;:19::i;:::-;119933:3;;;;;:::i;:::-;;;;119901:83;;;;120008:17;120018:6;120008:5;:9;;:17;;;;:::i;:::-;119994:11;:31;;;;119517:516;;;:::o;85919:295::-;86034:12;:10;:12::i;:::-;86022:24;;:8;:24;;;;86014:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;86134:8;86089:18;:32;86108:12;:10;:12::i;:::-;86089:32;;;;;;;;;;;;;;;:42;86122:8;86089:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;86187:8;86158:48;;86173:12;:10;:12::i;:::-;86158:48;;;86197:8;86158:48;;;;;;:::i;:::-;;;;;;;;85919:295;;:::o;87182:328::-;87357:41;87376:12;:10;:12::i;:::-;87390:7;87357:18;:41::i;:::-;87349:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;87463:39;87477:4;87483:2;87487:7;87496:5;87463:13;:39::i;:::-;87182:328;;;;:::o;84411:334::-;84484:13;84518:16;84526:7;84518;:16::i;:::-;84510:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;84599:21;84623:10;:8;:10::i;:::-;84599:34;;84675:1;84657:7;84651:21;:25;:86;;;;;;;;;;;;;;;;;84703:7;84712:18;:7;:16;:18::i;:::-;84686:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;84651:86;84644:93;;;84411:334;;;:::o;118166:28::-;;;;:::o;118014:26::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;124222:87::-;109583:12;:10;:12::i;:::-;109572:23;;:7;:5;:7::i;:::-;:23;;;109564:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;124294:7:::1;124287:4;;:14;;;;;;;;;;;;;;;;;;124222:87:::0;:::o;118126:33::-;;;;:::o;86285:164::-;86382:4;86406:18;:25;86425:5;86406:25;;;;;;;;;;;;;;;:35;86432:8;86406:35;;;;;;;;;;;;;;;;;;;;;;;;;86399:42;;86285:164;;;;:::o;122573:686::-;122646:1;122629:13;;:18;122621:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;122722:1;122700:18;;:23;;122692:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;117814:4;122815:18;;122805:29;122797:38;;:50;;;;:::i;:::-;122781:13;:66;;;;123022:3;122983:36;123000:18;;122983:12;:16;;:36;;;;:::i;:::-;:42;122979:139;;;117814:4;123091:1;123076:12;:16;;;;:::i;:::-;123066:27;123058:36;;:48;;;;:::i;:::-;123042:13;:64;;;;122979:139;123186:1;123169:13;;:18;123165:87;;;123220:20;123238:1;123220:13;;:17;;:20;;;;:::i;:::-;123204:13;:36;;;;123165:87;122573:686::o;118297:47::-;;;;;;;;;;;;;;;;;:::o;117919:37::-;117954:2;117919:37;:::o;110252:192::-;109583:12;:10;:12::i;:::-;109572:23;;:7;:5;:7::i;:::-;:23;;;109564:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;110361:1:::1;110341:22;;:8;:22;;;;110333:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;110417:19;110427:8;110417:9;:19::i;:::-;110252:192:::0;:::o;122206:90::-;109583:12;:10;:12::i;:::-;109572:23;;:7;:5;:7::i;:::-;:23;;;109564:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;122282:6:::1;122274:5;:14;;;;122206:90:::0;:::o;118240:50::-;;;;;;;;;;;;;;;;;:::o;118047:34::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;97540:224::-;97642:4;97681:35;97666:50;;;:11;:50;;;;:90;;;;97720:36;97744:11;97720:23;:36::i;:::-;97666:90;97659:97;;97540:224;;;:::o;78828:98::-;78881:7;78908:10;78901:17;;78828:98;:::o;105473:118::-;104999:8;:6;:8::i;:::-;104998:9;104990:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;105543:4:::1;105533:7;;:14;;;;;;;;;;;;;;;;;;105563:20;105570:12;:10;:12::i;:::-;105563:20;;;;;;:::i;:::-;;;;;;;;105473:118::o:0;105732:120::-;105276:8;:6;:8::i;:::-;105268:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;105801:5:::1;105791:7;;:15;;;;;;;;;;;;;;;;;;105822:22;105831:12;:10;:12::i;:::-;105822:22;;;;;;:::i;:::-;;;;;;;;105732:120::o:0;89020:127::-;89085:4;89137:1;89109:30;;:7;:16;89117:7;89109:16;;;;;;;;;;;;;;;;;;;;;:30;;;;89102:37;;89020:127;;;:::o;93002:174::-;93104:2;93077:15;:24;93093:7;93077:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;93160:7;93156:2;93122:46;;93131:23;93146:7;93131:14;:23::i;:::-;93122:46;;;;;;;;;;;;93002:174;;:::o;89314:348::-;89407:4;89432:16;89440:7;89432;:16::i;:::-;89424:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;89508:13;89524:23;89539:7;89524:14;:23::i;:::-;89508:39;;89577:5;89566:16;;:7;:16;;;:51;;;;89610:7;89586:31;;:20;89598:7;89586:11;:20::i;:::-;:31;;;89566:51;:87;;;;89621:32;89638:5;89645:7;89621:16;:32::i;:::-;89566:87;89558:96;;;89314:348;;;;:::o;92306:578::-;92465:4;92438:31;;:23;92453:7;92438:14;:23::i;:::-;:31;;;92430:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;92548:1;92534:16;;:2;:16;;;;92526:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;92604:39;92625:4;92631:2;92635:7;92604:20;:39::i;:::-;92708:29;92725:1;92729:7;92708:8;:29::i;:::-;92769:1;92750:9;:15;92760:4;92750:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;92798:1;92781:9;:13;92791:2;92781:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;92829:2;92810:7;:16;92818:7;92810:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;92868:7;92864:2;92849:27;;92858:4;92849:27;;;;;;;;;;;;92306:578;;;:::o;114071:98::-;114129:7;114160:1;114156;:5;;;;:::i;:::-;114149:12;;114071:98;;;;:::o;119001:90::-;119048:4;119072:11;;119065:18;;119001:90;:::o;120720:147::-;120776:7;120786:13;:11;:13::i;:::-;120776:23;;120810:18;120820:3;120825:2;120810:9;:18::i;:::-;120856:2;120844:15;;;;;;;;;;120720:147;;:::o;113333:98::-;113391:7;113422:1;113418;:5;;;;:::i;:::-;113411:12;;113333:98;;;;:::o;91609:360::-;91669:13;91685:23;91700:7;91685:14;:23::i;:::-;91669:39;;91721:48;91742:5;91757:1;91761:7;91721:20;:48::i;:::-;91810:29;91827:1;91831:7;91810:8;:29::i;:::-;91872:1;91852:9;:16;91862:5;91852:16;;;;;;;;;;;;;;;;:21;;;;;;;:::i;:::-;;;;;;;;91891:7;:16;91899:7;91891:16;;;;;;;;;;;;91884:23;;;;;;;;;;;91953:7;91949:1;91925:36;;91934:5;91925:36;;;;;;;;;;;;91609:360;;:::o;113714:98::-;113772:7;113803:1;113799;:5;;;;:::i;:::-;113792:12;;113714:98;;;;:::o;110452:173::-;110508:16;110527:6;;;;;;;;;;;110508:25;;110553:8;110544:6;;:17;;;;;;;;;;;;;;;;;;110608:8;110577:40;;110598:8;110577:40;;;;;;;;;;;;110452:173;;:::o;114470:98::-;114528:7;114559:1;114555;:5;;;;:::i;:::-;114548:12;;114470:98;;;;:::o;124635:181::-;124710:12;124727:8;:13;;124749:7;124727:34;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;124709:52;;;124780:7;124772:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;124635:181;;;:::o;88392:315::-;88549:28;88559:4;88565:2;88569:7;88549:9;:28::i;:::-;88596:48;88619:4;88625:2;88629:7;88638:5;88596:22;:48::i;:::-;88588:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;88392:315;;;;:::o;121976:113::-;122036:13;122069:12;122062:19;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;121976:113;:::o;79270:723::-;79326:13;79556:1;79547:5;:10;79543:53;;;79574:10;;;;;;;;;;;;;;;;;;;;;79543:53;79606:12;79621:5;79606:20;;79637:14;79662:78;79677:1;79669:4;:9;79662:78;;79695:8;;;;;:::i;:::-;;;;79726:2;79718:10;;;;;:::i;:::-;;;79662:78;;;79750:19;79782:6;79772:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;79750:39;;79800:154;79816:1;79807:5;:10;79800:154;;79844:1;79834:11;;;;;:::i;:::-;;;79911:2;79903:5;:10;;;;:::i;:::-;79890:2;:24;;;;:::i;:::-;79877:39;;79860:6;79867;79860:14;;;;;;;;;;;;;;;;;;;:56;;;;;;;;;;;79940:2;79931:11;;;;;:::i;:::-;;;79800:154;;;79978:6;79964:21;;;;;79270:723;;;;:::o;83122:305::-;83224:4;83276:25;83261:40;;;:11;:40;;;;:105;;;;83333:33;83318:48;;;:11;:48;;;;83261:105;:158;;;;83383:36;83407:11;83383:23;:36::i;:::-;83261:158;83241:178;;83122:305;;;:::o;124824:239::-;125010:45;125037:4;125043:2;125047:7;125010:26;:45::i;:::-;124824:239;;;:::o;90004:110::-;90080:26;90090:2;90094:7;90080:26;;;;;;;;;;;;:9;:26::i;:::-;90004:110;;:::o;93741:803::-;93896:4;93917:15;:2;:13;;;:15::i;:::-;93913:624;;;93969:2;93953:36;;;93990:12;:10;:12::i;:::-;94004:4;94010:7;94019:5;93953:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;93949:533;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;94216:1;94199:6;:13;:18;94195:272;;;94242:60;;;;;;;;;;:::i;:::-;;;;;;;;94195:272;94417:6;94411:13;94402:6;94398:2;94394:15;94387:38;93949:533;94086:45;;;94076:55;;;:6;:55;;;;94069:62;;;;;93913:624;94521:4;94514:11;;93741:803;;;;;;;:::o;81729:157::-;81814:4;81853:25;81838:40;;;:11;:40;;;;81831:47;;81729:157;;;:::o;106346:275::-;106490:45;106517:4;106523:2;106527:7;106490:26;:45::i;:::-;106557:8;:6;:8::i;:::-;106556:9;106548:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;106346:275;;;:::o;90341:321::-;90471:18;90477:2;90481:7;90471:5;:18::i;:::-;90522:54;90553:1;90557:2;90561:7;90570:5;90522:22;:54::i;:::-;90500:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;90341:321;;;:::o;71173:387::-;71233:4;71441:12;71508:7;71496:20;71488:28;;71551:1;71544:4;:8;71537:15;;;71173:387;;;:::o;99216:589::-;99360:45;99387:4;99393:2;99397:7;99360:26;:45::i;:::-;99438:1;99422:18;;:4;:18;;;99418:187;;;99457:40;99489:7;99457:31;:40::i;:::-;99418:187;;;99527:2;99519:10;;:4;:10;;;99515:90;;99546:47;99579:4;99585:7;99546:32;:47::i;:::-;99515:90;99418:187;99633:1;99619:16;;:2;:16;;;99615:183;;;99652:45;99689:7;99652:36;:45::i;:::-;99615:183;;;99725:4;99719:10;;:2;:10;;;99715:83;;99746:40;99774:2;99778:7;99746:27;:40::i;:::-;99715:83;99615:183;99216:589;;;:::o;90998:382::-;91092:1;91078:16;;:2;:16;;;;91070:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;91151:16;91159:7;91151;:16::i;:::-;91150:17;91142:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;91213:45;91242:1;91246:2;91250:7;91213:20;:45::i;:::-;91288:1;91271:9;:13;91281:2;91271:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;91319:2;91300:7;:16;91308:7;91300:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;91364:7;91360:2;91339:33;;91356:1;91339:33;;;;;;;;;;;;90998:382;;:::o;95116:126::-;;;;:::o;100528:164::-;100632:10;:17;;;;100605:15;:24;100621:7;100605:24;;;;;;;;;;;:44;;;;100660:10;100676:7;100660:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100528:164;:::o;101319:988::-;101585:22;101635:1;101610:22;101627:4;101610:16;:22::i;:::-;:26;;;;:::i;:::-;101585:51;;101647:18;101668:17;:26;101686:7;101668:26;;;;;;;;;;;;101647:47;;101815:14;101801:10;:28;101797:328;;101846:19;101868:12;:18;101881:4;101868:18;;;;;;;;;;;;;;;:34;101887:14;101868:34;;;;;;;;;;;;101846:56;;101952:11;101919:12;:18;101932:4;101919:18;;;;;;;;;;;;;;;:30;101938:10;101919:30;;;;;;;;;;;:44;;;;102069:10;102036:17;:30;102054:11;102036:30;;;;;;;;;;;:43;;;;101797:328;;102221:17;:26;102239:7;102221:26;;;;;;;;;;;102214:33;;;102265:12;:18;102278:4;102265:18;;;;;;;;;;;;;;;:34;102284:14;102265:34;;;;;;;;;;;102258:41;;;101319:988;;;;:::o;102602:1079::-;102855:22;102900:1;102880:10;:17;;;;:21;;;;:::i;:::-;102855:46;;102912:18;102933:15;:24;102949:7;102933:24;;;;;;;;;;;;102912:45;;103284:19;103306:10;103317:14;103306:26;;;;;;;;;;;;;;;;;;;;;;;;103284:48;;103370:11;103345:10;103356;103345:22;;;;;;;;;;;;;;;;;;;;;;;:36;;;;103481:10;103450:15;:28;103466:11;103450:28;;;;;;;;;;;:41;;;;103622:15;:24;103638:7;103622:24;;;;;;;;;;;103615:31;;;103657:10;:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;102602:1079;;;;:::o;100106:221::-;100191:14;100208:20;100225:2;100208:16;:20::i;:::-;100191:37;;100266:7;100239:12;:16;100252:2;100239:16;;;;;;;;;;;;;;;:24;100256:6;100239:24;;;;;;;;;;;:34;;;;100313:6;100284:17;:26;100302:7;100284:26;;;;;;;;;;;:35;;;;100106:221;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:343:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:2;;;290:1;287;280:12;249:2;303:41;337:6;332:3;327;303:41;:::i;:::-;90:260;;;;;;:::o;356:345::-;434:5;459:66;475:49;517:6;475:49;:::i;:::-;459:66;:::i;:::-;450:75;;548:6;541:5;534:21;586:4;579:5;575:16;624:3;615:6;610:3;606:16;603:25;600:2;;;641:1;638;631:12;600:2;654:41;688:6;683:3;678;654:41;:::i;:::-;440:261;;;;;;:::o;707:139::-;753:5;791:6;778:20;769:29;;807:33;834:5;807:33;:::i;:::-;759:87;;;;:::o;852:133::-;895:5;933:6;920:20;911:29;;949:30;973:5;949:30;:::i;:::-;901:84;;;;:::o;991:137::-;1036:5;1074:6;1061:20;1052:29;;1090:32;1116:5;1090:32;:::i;:::-;1042:86;;;;:::o;1134:141::-;1190:5;1221:6;1215:13;1206:22;;1237:32;1263:5;1237:32;:::i;:::-;1196:79;;;;:::o;1294:271::-;1349:5;1398:3;1391:4;1383:6;1379:17;1375:27;1365:2;;1416:1;1413;1406:12;1365:2;1456:6;1443:20;1481:78;1555:3;1547:6;1540:4;1532:6;1528:17;1481:78;:::i;:::-;1472:87;;1355:210;;;;;:::o;1585:273::-;1641:5;1690:3;1683:4;1675:6;1671:17;1667:27;1657:2;;1708:1;1705;1698:12;1657:2;1748:6;1735:20;1773:79;1848:3;1840:6;1833:4;1825:6;1821:17;1773:79;:::i;:::-;1764:88;;1647:211;;;;;:::o;1864:139::-;1910:5;1948:6;1935:20;1926:29;;1964:33;1991:5;1964:33;:::i;:::-;1916:87;;;;:::o;2009:262::-;2068:6;2117:2;2105:9;2096:7;2092:23;2088:32;2085:2;;;2133:1;2130;2123:12;2085:2;2176:1;2201:53;2246:7;2237:6;2226:9;2222:22;2201:53;:::i;:::-;2191:63;;2147:117;2075:196;;;;:::o;2277:407::-;2345:6;2353;2402:2;2390:9;2381:7;2377:23;2373:32;2370:2;;;2418:1;2415;2408:12;2370:2;2461:1;2486:53;2531:7;2522:6;2511:9;2507:22;2486:53;:::i;:::-;2476:63;;2432:117;2588:2;2614:53;2659:7;2650:6;2639:9;2635:22;2614:53;:::i;:::-;2604:63;;2559:118;2360:324;;;;;:::o;2690:552::-;2767:6;2775;2783;2832:2;2820:9;2811:7;2807:23;2803:32;2800:2;;;2848:1;2845;2838:12;2800:2;2891:1;2916:53;2961:7;2952:6;2941:9;2937:22;2916:53;:::i;:::-;2906:63;;2862:117;3018:2;3044:53;3089:7;3080:6;3069:9;3065:22;3044:53;:::i;:::-;3034:63;;2989:118;3146:2;3172:53;3217:7;3208:6;3197:9;3193:22;3172:53;:::i;:::-;3162:63;;3117:118;2790:452;;;;;:::o;3248:809::-;3343:6;3351;3359;3367;3416:3;3404:9;3395:7;3391:23;3387:33;3384:2;;;3433:1;3430;3423:12;3384:2;3476:1;3501:53;3546:7;3537:6;3526:9;3522:22;3501:53;:::i;:::-;3491:63;;3447:117;3603:2;3629:53;3674:7;3665:6;3654:9;3650:22;3629:53;:::i;:::-;3619:63;;3574:118;3731:2;3757:53;3802:7;3793:6;3782:9;3778:22;3757:53;:::i;:::-;3747:63;;3702:118;3887:2;3876:9;3872:18;3859:32;3918:18;3910:6;3907:30;3904:2;;;3950:1;3947;3940:12;3904:2;3978:62;4032:7;4023:6;4012:9;4008:22;3978:62;:::i;:::-;3968:72;;3830:220;3374:683;;;;;;;:::o;4063:401::-;4128:6;4136;4185:2;4173:9;4164:7;4160:23;4156:32;4153:2;;;4201:1;4198;4191:12;4153:2;4244:1;4269:53;4314:7;4305:6;4294:9;4290:22;4269:53;:::i;:::-;4259:63;;4215:117;4371:2;4397:50;4439:7;4430:6;4419:9;4415:22;4397:50;:::i;:::-;4387:60;;4342:115;4143:321;;;;;:::o;4470:407::-;4538:6;4546;4595:2;4583:9;4574:7;4570:23;4566:32;4563:2;;;4611:1;4608;4601:12;4563:2;4654:1;4679:53;4724:7;4715:6;4704:9;4700:22;4679:53;:::i;:::-;4669:63;;4625:117;4781:2;4807:53;4852:7;4843:6;4832:9;4828:22;4807:53;:::i;:::-;4797:63;;4752:118;4553:324;;;;;:::o;4883:256::-;4939:6;4988:2;4976:9;4967:7;4963:23;4959:32;4956:2;;;5004:1;5001;4994:12;4956:2;5047:1;5072:50;5114:7;5105:6;5094:9;5090:22;5072:50;:::i;:::-;5062:60;;5018:114;4946:193;;;;:::o;5145:260::-;5203:6;5252:2;5240:9;5231:7;5227:23;5223:32;5220:2;;;5268:1;5265;5258:12;5220:2;5311:1;5336:52;5380:7;5371:6;5360:9;5356:22;5336:52;:::i;:::-;5326:62;;5282:116;5210:195;;;;:::o;5411:282::-;5480:6;5529:2;5517:9;5508:7;5504:23;5500:32;5497:2;;;5545:1;5542;5535:12;5497:2;5588:1;5613:63;5668:7;5659:6;5648:9;5644:22;5613:63;:::i;:::-;5603:73;;5559:127;5487:206;;;;:::o;5699:375::-;5768:6;5817:2;5805:9;5796:7;5792:23;5788:32;5785:2;;;5833:1;5830;5823:12;5785:2;5904:1;5893:9;5889:17;5876:31;5934:18;5926:6;5923:30;5920:2;;;5966:1;5963;5956:12;5920:2;5994:63;6049:7;6040:6;6029:9;6025:22;5994:63;:::i;:::-;5984:73;;5847:220;5775:299;;;;:::o;6080:262::-;6139:6;6188:2;6176:9;6167:7;6163:23;6159:32;6156:2;;;6204:1;6201;6194:12;6156:2;6247:1;6272:53;6317:7;6308:6;6297:9;6293:22;6272:53;:::i;:::-;6262:63;;6218:117;6146:196;;;;:::o;6348:179::-;6417:10;6438:46;6480:3;6472:6;6438:46;:::i;:::-;6516:4;6511:3;6507:14;6493:28;;6428:99;;;;:::o;6533:118::-;6620:24;6638:5;6620:24;:::i;:::-;6615:3;6608:37;6598:53;;:::o;6687:732::-;6806:3;6835:54;6883:5;6835:54;:::i;:::-;6905:86;6984:6;6979:3;6905:86;:::i;:::-;6898:93;;7015:56;7065:5;7015:56;:::i;:::-;7094:7;7125:1;7110:284;7135:6;7132:1;7129:13;7110:284;;;7211:6;7205:13;7238:63;7297:3;7282:13;7238:63;:::i;:::-;7231:70;;7324:60;7377:6;7324:60;:::i;:::-;7314:70;;7170:224;7157:1;7154;7150:9;7145:14;;7110:284;;;7114:14;7410:3;7403:10;;6811:608;;;;;;;:::o;7425:109::-;7506:21;7521:5;7506:21;:::i;:::-;7501:3;7494:34;7484:50;;:::o;7540:360::-;7626:3;7654:38;7686:5;7654:38;:::i;:::-;7708:70;7771:6;7766:3;7708:70;:::i;:::-;7701:77;;7787:52;7832:6;7827:3;7820:4;7813:5;7809:16;7787:52;:::i;:::-;7864:29;7886:6;7864:29;:::i;:::-;7859:3;7855:39;7848:46;;7630:270;;;;;:::o;7906:364::-;7994:3;8022:39;8055:5;8022:39;:::i;:::-;8077:71;8141:6;8136:3;8077:71;:::i;:::-;8070:78;;8157:52;8202:6;8197:3;8190:4;8183:5;8179:16;8157:52;:::i;:::-;8234:29;8256:6;8234:29;:::i;:::-;8229:3;8225:39;8218:46;;7998:272;;;;;:::o;8276:377::-;8382:3;8410:39;8443:5;8410:39;:::i;:::-;8465:89;8547:6;8542:3;8465:89;:::i;:::-;8458:96;;8563:52;8608:6;8603:3;8596:4;8589:5;8585:16;8563:52;:::i;:::-;8640:6;8635:3;8631:16;8624:23;;8386:267;;;;;:::o;8659:366::-;8801:3;8822:67;8886:2;8881:3;8822:67;:::i;:::-;8815:74;;8898:93;8987:3;8898:93;:::i;:::-;9016:2;9011:3;9007:12;9000:19;;8805:220;;;:::o;9031:366::-;9173:3;9194:67;9258:2;9253:3;9194:67;:::i;:::-;9187:74;;9270:93;9359:3;9270:93;:::i;:::-;9388:2;9383:3;9379:12;9372:19;;9177:220;;;:::o;9403:366::-;9545:3;9566:67;9630:2;9625:3;9566:67;:::i;:::-;9559:74;;9642:93;9731:3;9642:93;:::i;:::-;9760:2;9755:3;9751:12;9744:19;;9549:220;;;:::o;9775:366::-;9917:3;9938:67;10002:2;9997:3;9938:67;:::i;:::-;9931:74;;10014:93;10103:3;10014:93;:::i;:::-;10132:2;10127:3;10123:12;10116:19;;9921:220;;;:::o;10147:366::-;10289:3;10310:67;10374:2;10369:3;10310:67;:::i;:::-;10303:74;;10386:93;10475:3;10386:93;:::i;:::-;10504:2;10499:3;10495:12;10488:19;;10293:220;;;:::o;10519:366::-;10661:3;10682:67;10746:2;10741:3;10682:67;:::i;:::-;10675:74;;10758:93;10847:3;10758:93;:::i;:::-;10876:2;10871:3;10867:12;10860:19;;10665:220;;;:::o;10891:366::-;11033:3;11054:67;11118:2;11113:3;11054:67;:::i;:::-;11047:74;;11130:93;11219:3;11130:93;:::i;:::-;11248:2;11243:3;11239:12;11232:19;;11037:220;;;:::o;11263:366::-;11405:3;11426:67;11490:2;11485:3;11426:67;:::i;:::-;11419:74;;11502:93;11591:3;11502:93;:::i;:::-;11620:2;11615:3;11611:12;11604:19;;11409:220;;;:::o;11635:366::-;11777:3;11798:67;11862:2;11857:3;11798:67;:::i;:::-;11791:74;;11874:93;11963:3;11874:93;:::i;:::-;11992:2;11987:3;11983:12;11976:19;;11781:220;;;:::o;12007:366::-;12149:3;12170:67;12234:2;12229:3;12170:67;:::i;:::-;12163:74;;12246:93;12335:3;12246:93;:::i;:::-;12364:2;12359:3;12355:12;12348:19;;12153:220;;;:::o;12379:365::-;12521:3;12542:66;12606:1;12601:3;12542:66;:::i;:::-;12535:73;;12617:93;12706:3;12617:93;:::i;:::-;12735:2;12730:3;12726:12;12719:19;;12525:219;;;:::o;12750:366::-;12892:3;12913:67;12977:2;12972:3;12913:67;:::i;:::-;12906:74;;12989:93;13078:3;12989:93;:::i;:::-;13107:2;13102:3;13098:12;13091:19;;12896:220;;;:::o;13122:366::-;13264:3;13285:67;13349:2;13344:3;13285:67;:::i;:::-;13278:74;;13361:93;13450:3;13361:93;:::i;:::-;13479:2;13474:3;13470:12;13463:19;;13268:220;;;:::o;13494:366::-;13636:3;13657:67;13721:2;13716:3;13657:67;:::i;:::-;13650:74;;13733:93;13822:3;13733:93;:::i;:::-;13851:2;13846:3;13842:12;13835:19;;13640:220;;;:::o;13866:366::-;14008:3;14029:67;14093:2;14088:3;14029:67;:::i;:::-;14022:74;;14105:93;14194:3;14105:93;:::i;:::-;14223:2;14218:3;14214:12;14207:19;;14012:220;;;:::o;14238:366::-;14380:3;14401:67;14465:2;14460:3;14401:67;:::i;:::-;14394:74;;14477:93;14566:3;14477:93;:::i;:::-;14595:2;14590:3;14586:12;14579:19;;14384:220;;;:::o;14610:366::-;14752:3;14773:67;14837:2;14832:3;14773:67;:::i;:::-;14766:74;;14849:93;14938:3;14849:93;:::i;:::-;14967:2;14962:3;14958:12;14951:19;;14756:220;;;:::o;14982:366::-;15124:3;15145:67;15209:2;15204:3;15145:67;:::i;:::-;15138:74;;15221:93;15310:3;15221:93;:::i;:::-;15339:2;15334:3;15330:12;15323:19;;15128:220;;;:::o;15354:366::-;15496:3;15517:67;15581:2;15576:3;15517:67;:::i;:::-;15510:74;;15593:93;15682:3;15593:93;:::i;:::-;15711:2;15706:3;15702:12;15695:19;;15500:220;;;:::o;15726:366::-;15868:3;15889:67;15953:2;15948:3;15889:67;:::i;:::-;15882:74;;15965:93;16054:3;15965:93;:::i;:::-;16083:2;16078:3;16074:12;16067:19;;15872:220;;;:::o;16098:366::-;16240:3;16261:67;16325:2;16320:3;16261:67;:::i;:::-;16254:74;;16337:93;16426:3;16337:93;:::i;:::-;16455:2;16450:3;16446:12;16439:19;;16244:220;;;:::o;16470:366::-;16612:3;16633:67;16697:2;16692:3;16633:67;:::i;:::-;16626:74;;16709:93;16798:3;16709:93;:::i;:::-;16827:2;16822:3;16818:12;16811:19;;16616:220;;;:::o;16842:366::-;16984:3;17005:67;17069:2;17064:3;17005:67;:::i;:::-;16998:74;;17081:93;17170:3;17081:93;:::i;:::-;17199:2;17194:3;17190:12;17183:19;;16988:220;;;:::o;17214:366::-;17356:3;17377:67;17441:2;17436:3;17377:67;:::i;:::-;17370:74;;17453:93;17542:3;17453:93;:::i;:::-;17571:2;17566:3;17562:12;17555:19;;17360:220;;;:::o;17586:366::-;17728:3;17749:67;17813:2;17808:3;17749:67;:::i;:::-;17742:74;;17825:93;17914:3;17825:93;:::i;:::-;17943:2;17938:3;17934:12;17927:19;;17732:220;;;:::o;17958:366::-;18100:3;18121:67;18185:2;18180:3;18121:67;:::i;:::-;18114:74;;18197:93;18286:3;18197:93;:::i;:::-;18315:2;18310:3;18306:12;18299:19;;18104:220;;;:::o;18330:366::-;18472:3;18493:67;18557:2;18552:3;18493:67;:::i;:::-;18486:74;;18569:93;18658:3;18569:93;:::i;:::-;18687:2;18682:3;18678:12;18671:19;;18476:220;;;:::o;18702:366::-;18844:3;18865:67;18929:2;18924:3;18865:67;:::i;:::-;18858:74;;18941:93;19030:3;18941:93;:::i;:::-;19059:2;19054:3;19050:12;19043:19;;18848:220;;;:::o;19074:398::-;19233:3;19254:83;19335:1;19330:3;19254:83;:::i;:::-;19247:90;;19346:93;19435:3;19346:93;:::i;:::-;19464:1;19459:3;19455:11;19448:18;;19237:235;;;:::o;19478:366::-;19620:3;19641:67;19705:2;19700:3;19641:67;:::i;:::-;19634:74;;19717:93;19806:3;19717:93;:::i;:::-;19835:2;19830:3;19826:12;19819:19;;19624:220;;;:::o;19850:366::-;19992:3;20013:67;20077:2;20072:3;20013:67;:::i;:::-;20006:74;;20089:93;20178:3;20089:93;:::i;:::-;20207:2;20202:3;20198:12;20191:19;;19996:220;;;:::o;20222:366::-;20364:3;20385:67;20449:2;20444:3;20385:67;:::i;:::-;20378:74;;20461:93;20550:3;20461:93;:::i;:::-;20579:2;20574:3;20570:12;20563:19;;20368:220;;;:::o;20594:366::-;20736:3;20757:67;20821:2;20816:3;20757:67;:::i;:::-;20750:74;;20833:93;20922:3;20833:93;:::i;:::-;20951:2;20946:3;20942:12;20935:19;;20740:220;;;:::o;20966:108::-;21043:24;21061:5;21043:24;:::i;:::-;21038:3;21031:37;21021:53;;:::o;21080:118::-;21167:24;21185:5;21167:24;:::i;:::-;21162:3;21155:37;21145:53;;:::o;21204:435::-;21384:3;21406:95;21497:3;21488:6;21406:95;:::i;:::-;21399:102;;21518:95;21609:3;21600:6;21518:95;:::i;:::-;21511:102;;21630:3;21623:10;;21388:251;;;;;:::o;21645:379::-;21829:3;21851:147;21994:3;21851:147;:::i;:::-;21844:154;;22015:3;22008:10;;21833:191;;;:::o;22030:222::-;22123:4;22161:2;22150:9;22146:18;22138:26;;22174:71;22242:1;22231:9;22227:17;22218:6;22174:71;:::i;:::-;22128:124;;;;:::o;22258:640::-;22453:4;22491:3;22480:9;22476:19;22468:27;;22505:71;22573:1;22562:9;22558:17;22549:6;22505:71;:::i;:::-;22586:72;22654:2;22643:9;22639:18;22630:6;22586:72;:::i;:::-;22668;22736:2;22725:9;22721:18;22712:6;22668:72;:::i;:::-;22787:9;22781:4;22777:20;22772:2;22761:9;22757:18;22750:48;22815:76;22886:4;22877:6;22815:76;:::i;:::-;22807:84;;22458:440;;;;;;;:::o;22904:373::-;23047:4;23085:2;23074:9;23070:18;23062:26;;23134:9;23128:4;23124:20;23120:1;23109:9;23105:17;23098:47;23162:108;23265:4;23256:6;23162:108;:::i;:::-;23154:116;;23052:225;;;;:::o;23283:210::-;23370:4;23408:2;23397:9;23393:18;23385:26;;23421:65;23483:1;23472:9;23468:17;23459:6;23421:65;:::i;:::-;23375:118;;;;:::o;23499:313::-;23612:4;23650:2;23639:9;23635:18;23627:26;;23699:9;23693:4;23689:20;23685:1;23674:9;23670:17;23663:47;23727:78;23800:4;23791:6;23727:78;:::i;:::-;23719:86;;23617:195;;;;:::o;23818:419::-;23984:4;24022:2;24011:9;24007:18;23999:26;;24071:9;24065:4;24061:20;24057:1;24046:9;24042:17;24035:47;24099:131;24225:4;24099:131;:::i;:::-;24091:139;;23989:248;;;:::o;24243:419::-;24409:4;24447:2;24436:9;24432:18;24424:26;;24496:9;24490:4;24486:20;24482:1;24471:9;24467:17;24460:47;24524:131;24650:4;24524:131;:::i;:::-;24516:139;;24414:248;;;:::o;24668:419::-;24834:4;24872:2;24861:9;24857:18;24849:26;;24921:9;24915:4;24911:20;24907:1;24896:9;24892:17;24885:47;24949:131;25075:4;24949:131;:::i;:::-;24941:139;;24839:248;;;:::o;25093:419::-;25259:4;25297:2;25286:9;25282:18;25274:26;;25346:9;25340:4;25336:20;25332:1;25321:9;25317:17;25310:47;25374:131;25500:4;25374:131;:::i;:::-;25366:139;;25264:248;;;:::o;25518:419::-;25684:4;25722:2;25711:9;25707:18;25699:26;;25771:9;25765:4;25761:20;25757:1;25746:9;25742:17;25735:47;25799:131;25925:4;25799:131;:::i;:::-;25791:139;;25689:248;;;:::o;25943:419::-;26109:4;26147:2;26136:9;26132:18;26124:26;;26196:9;26190:4;26186:20;26182:1;26171:9;26167:17;26160:47;26224:131;26350:4;26224:131;:::i;:::-;26216:139;;26114:248;;;:::o;26368:419::-;26534:4;26572:2;26561:9;26557:18;26549:26;;26621:9;26615:4;26611:20;26607:1;26596:9;26592:17;26585:47;26649:131;26775:4;26649:131;:::i;:::-;26641:139;;26539:248;;;:::o;26793:419::-;26959:4;26997:2;26986:9;26982:18;26974:26;;27046:9;27040:4;27036:20;27032:1;27021:9;27017:17;27010:47;27074:131;27200:4;27074:131;:::i;:::-;27066:139;;26964:248;;;:::o;27218:419::-;27384:4;27422:2;27411:9;27407:18;27399:26;;27471:9;27465:4;27461:20;27457:1;27446:9;27442:17;27435:47;27499:131;27625:4;27499:131;:::i;:::-;27491:139;;27389:248;;;:::o;27643:419::-;27809:4;27847:2;27836:9;27832:18;27824:26;;27896:9;27890:4;27886:20;27882:1;27871:9;27867:17;27860:47;27924:131;28050:4;27924:131;:::i;:::-;27916:139;;27814:248;;;:::o;28068:419::-;28234:4;28272:2;28261:9;28257:18;28249:26;;28321:9;28315:4;28311:20;28307:1;28296:9;28292:17;28285:47;28349:131;28475:4;28349:131;:::i;:::-;28341:139;;28239:248;;;:::o;28493:419::-;28659:4;28697:2;28686:9;28682:18;28674:26;;28746:9;28740:4;28736:20;28732:1;28721:9;28717:17;28710:47;28774:131;28900:4;28774:131;:::i;:::-;28766:139;;28664:248;;;:::o;28918:419::-;29084:4;29122:2;29111:9;29107:18;29099:26;;29171:9;29165:4;29161:20;29157:1;29146:9;29142:17;29135:47;29199:131;29325:4;29199:131;:::i;:::-;29191:139;;29089:248;;;:::o;29343:419::-;29509:4;29547:2;29536:9;29532:18;29524:26;;29596:9;29590:4;29586:20;29582:1;29571:9;29567:17;29560:47;29624:131;29750:4;29624:131;:::i;:::-;29616:139;;29514:248;;;:::o;29768:419::-;29934:4;29972:2;29961:9;29957:18;29949:26;;30021:9;30015:4;30011:20;30007:1;29996:9;29992:17;29985:47;30049:131;30175:4;30049:131;:::i;:::-;30041:139;;29939:248;;;:::o;30193:419::-;30359:4;30397:2;30386:9;30382:18;30374:26;;30446:9;30440:4;30436:20;30432:1;30421:9;30417:17;30410:47;30474:131;30600:4;30474:131;:::i;:::-;30466:139;;30364:248;;;:::o;30618:419::-;30784:4;30822:2;30811:9;30807:18;30799:26;;30871:9;30865:4;30861:20;30857:1;30846:9;30842:17;30835:47;30899:131;31025:4;30899:131;:::i;:::-;30891:139;;30789:248;;;:::o;31043:419::-;31209:4;31247:2;31236:9;31232:18;31224:26;;31296:9;31290:4;31286:20;31282:1;31271:9;31267:17;31260:47;31324:131;31450:4;31324:131;:::i;:::-;31316:139;;31214:248;;;:::o;31468:419::-;31634:4;31672:2;31661:9;31657:18;31649:26;;31721:9;31715:4;31711:20;31707:1;31696:9;31692:17;31685:47;31749:131;31875:4;31749:131;:::i;:::-;31741:139;;31639:248;;;:::o;31893:419::-;32059:4;32097:2;32086:9;32082:18;32074:26;;32146:9;32140:4;32136:20;32132:1;32121:9;32117:17;32110:47;32174:131;32300:4;32174:131;:::i;:::-;32166:139;;32064:248;;;:::o;32318:419::-;32484:4;32522:2;32511:9;32507:18;32499:26;;32571:9;32565:4;32561:20;32557:1;32546:9;32542:17;32535:47;32599:131;32725:4;32599:131;:::i;:::-;32591:139;;32489:248;;;:::o;32743:419::-;32909:4;32947:2;32936:9;32932:18;32924:26;;32996:9;32990:4;32986:20;32982:1;32971:9;32967:17;32960:47;33024:131;33150:4;33024:131;:::i;:::-;33016:139;;32914:248;;;:::o;33168:419::-;33334:4;33372:2;33361:9;33357:18;33349:26;;33421:9;33415:4;33411:20;33407:1;33396:9;33392:17;33385:47;33449:131;33575:4;33449:131;:::i;:::-;33441:139;;33339:248;;;:::o;33593:419::-;33759:4;33797:2;33786:9;33782:18;33774:26;;33846:9;33840:4;33836:20;33832:1;33821:9;33817:17;33810:47;33874:131;34000:4;33874:131;:::i;:::-;33866:139;;33764:248;;;:::o;34018:419::-;34184:4;34222:2;34211:9;34207:18;34199:26;;34271:9;34265:4;34261:20;34257:1;34246:9;34242:17;34235:47;34299:131;34425:4;34299:131;:::i;:::-;34291:139;;34189:248;;;:::o;34443:419::-;34609:4;34647:2;34636:9;34632:18;34624:26;;34696:9;34690:4;34686:20;34682:1;34671:9;34667:17;34660:47;34724:131;34850:4;34724:131;:::i;:::-;34716:139;;34614:248;;;:::o;34868:419::-;35034:4;35072:2;35061:9;35057:18;35049:26;;35121:9;35115:4;35111:20;35107:1;35096:9;35092:17;35085:47;35149:131;35275:4;35149:131;:::i;:::-;35141:139;;35039:248;;;:::o;35293:419::-;35459:4;35497:2;35486:9;35482:18;35474:26;;35546:9;35540:4;35536:20;35532:1;35521:9;35517:17;35510:47;35574:131;35700:4;35574:131;:::i;:::-;35566:139;;35464:248;;;:::o;35718:419::-;35884:4;35922:2;35911:9;35907:18;35899:26;;35971:9;35965:4;35961:20;35957:1;35946:9;35942:17;35935:47;35999:131;36125:4;35999:131;:::i;:::-;35991:139;;35889:248;;;:::o;36143:419::-;36309:4;36347:2;36336:9;36332:18;36324:26;;36396:9;36390:4;36386:20;36382:1;36371:9;36367:17;36360:47;36424:131;36550:4;36424:131;:::i;:::-;36416:139;;36314:248;;;:::o;36568:419::-;36734:4;36772:2;36761:9;36757:18;36749:26;;36821:9;36815:4;36811:20;36807:1;36796:9;36792:17;36785:47;36849:131;36975:4;36849:131;:::i;:::-;36841:139;;36739:248;;;:::o;36993:419::-;37159:4;37197:2;37186:9;37182:18;37174:26;;37246:9;37240:4;37236:20;37232:1;37221:9;37217:17;37210:47;37274:131;37400:4;37274:131;:::i;:::-;37266:139;;37164:248;;;:::o;37418:222::-;37511:4;37549:2;37538:9;37534:18;37526:26;;37562:71;37630:1;37619:9;37615:17;37606:6;37562:71;:::i;:::-;37516:124;;;;:::o;37646:129::-;37680:6;37707:20;;:::i;:::-;37697:30;;37736:33;37764:4;37756:6;37736:33;:::i;:::-;37687:88;;;:::o;37781:75::-;37814:6;37847:2;37841:9;37831:19;;37821:35;:::o;37862:307::-;37923:4;38013:18;38005:6;38002:30;37999:2;;;38035:18;;:::i;:::-;37999:2;38073:29;38095:6;38073:29;:::i;:::-;38065:37;;38157:4;38151;38147:15;38139:23;;37928:241;;;:::o;38175:308::-;38237:4;38327:18;38319:6;38316:30;38313:2;;;38349:18;;:::i;:::-;38313:2;38387:29;38409:6;38387:29;:::i;:::-;38379:37;;38471:4;38465;38461:15;38453:23;;38242:241;;;:::o;38489:132::-;38556:4;38579:3;38571:11;;38609:4;38604:3;38600:14;38592:22;;38561:60;;;:::o;38627:114::-;38694:6;38728:5;38722:12;38712:22;;38701:40;;;:::o;38747:98::-;38798:6;38832:5;38826:12;38816:22;;38805:40;;;:::o;38851:99::-;38903:6;38937:5;38931:12;38921:22;;38910:40;;;:::o;38956:113::-;39026:4;39058;39053:3;39049:14;39041:22;;39031:38;;;:::o;39075:184::-;39174:11;39208:6;39203:3;39196:19;39248:4;39243:3;39239:14;39224:29;;39186:73;;;;:::o;39265:168::-;39348:11;39382:6;39377:3;39370:19;39422:4;39417:3;39413:14;39398:29;;39360:73;;;;:::o;39439:147::-;39540:11;39577:3;39562:18;;39552:34;;;;:::o;39592:169::-;39676:11;39710:6;39705:3;39698:19;39750:4;39745:3;39741:14;39726:29;;39688:73;;;;:::o;39767:148::-;39869:11;39906:3;39891:18;;39881:34;;;;:::o;39921:305::-;39961:3;39980:20;39998:1;39980:20;:::i;:::-;39975:25;;40014:20;40032:1;40014:20;:::i;:::-;40009:25;;40168:1;40100:66;40096:74;40093:1;40090:81;40087:2;;;40174:18;;:::i;:::-;40087:2;40218:1;40215;40211:9;40204:16;;39965:261;;;;:::o;40232:185::-;40272:1;40289:20;40307:1;40289:20;:::i;:::-;40284:25;;40323:20;40341:1;40323:20;:::i;:::-;40318:25;;40362:1;40352:2;;40367:18;;:::i;:::-;40352:2;40409:1;40406;40402:9;40397:14;;40274:143;;;;:::o;40423:348::-;40463:7;40486:20;40504:1;40486:20;:::i;:::-;40481:25;;40520:20;40538:1;40520:20;:::i;:::-;40515:25;;40708:1;40640:66;40636:74;40633:1;40630:81;40625:1;40618:9;40611:17;40607:105;40604:2;;;40715:18;;:::i;:::-;40604:2;40763:1;40760;40756:9;40745:20;;40471:300;;;;:::o;40777:191::-;40817:4;40837:20;40855:1;40837:20;:::i;:::-;40832:25;;40871:20;40889:1;40871:20;:::i;:::-;40866:25;;40910:1;40907;40904:8;40901:2;;;40915:18;;:::i;:::-;40901:2;40960:1;40957;40953:9;40945:17;;40822:146;;;;:::o;40974:96::-;41011:7;41040:24;41058:5;41040:24;:::i;:::-;41029:35;;41019:51;;;:::o;41076:90::-;41110:7;41153:5;41146:13;41139:21;41128:32;;41118:48;;;:::o;41172:149::-;41208:7;41248:66;41241:5;41237:78;41226:89;;41216:105;;;:::o;41327:126::-;41364:7;41404:42;41397:5;41393:54;41382:65;;41372:81;;;:::o;41459:77::-;41496:7;41525:5;41514:16;;41504:32;;;:::o;41542:154::-;41626:6;41621:3;41616;41603:30;41688:1;41679:6;41674:3;41670:16;41663:27;41593:103;;;:::o;41702:307::-;41770:1;41780:113;41794:6;41791:1;41788:13;41780:113;;;41879:1;41874:3;41870:11;41864:18;41860:1;41855:3;41851:11;41844:39;41816:2;41813:1;41809:10;41804:15;;41780:113;;;41911:6;41908:1;41905:13;41902:2;;;41991:1;41982:6;41977:3;41973:16;41966:27;41902:2;41751:258;;;;:::o;42015:320::-;42059:6;42096:1;42090:4;42086:12;42076:22;;42143:1;42137:4;42133:12;42164:18;42154:2;;42220:4;42212:6;42208:17;42198:27;;42154:2;42282;42274:6;42271:14;42251:18;42248:38;42245:2;;;42301:18;;:::i;:::-;42245:2;42066:269;;;;:::o;42341:281::-;42424:27;42446:4;42424:27;:::i;:::-;42416:6;42412:40;42554:6;42542:10;42539:22;42518:18;42506:10;42503:34;42500:62;42497:2;;;42565:18;;:::i;:::-;42497:2;42605:10;42601:2;42594:22;42384:238;;;:::o;42628:233::-;42667:3;42690:24;42708:5;42690:24;:::i;:::-;42681:33;;42736:66;42729:5;42726:77;42723:2;;;42806:18;;:::i;:::-;42723:2;42853:1;42846:5;42842:13;42835:20;;42671:190;;;:::o;42867:176::-;42899:1;42916:20;42934:1;42916:20;:::i;:::-;42911:25;;42950:20;42968:1;42950:20;:::i;:::-;42945:25;;42989:1;42979:2;;42994:18;;:::i;:::-;42979:2;43035:1;43032;43028:9;43023:14;;42901:142;;;;:::o;43049:180::-;43097:77;43094:1;43087:88;43194:4;43191:1;43184:15;43218:4;43215:1;43208:15;43235:180;43283:77;43280:1;43273:88;43380:4;43377:1;43370:15;43404:4;43401:1;43394:15;43421:180;43469:77;43466:1;43459:88;43566:4;43563:1;43556:15;43590:4;43587:1;43580:15;43607:180;43655:77;43652:1;43645:88;43752:4;43749:1;43742:15;43776:4;43773:1;43766:15;43793:102;43834:6;43885:2;43881:7;43876:2;43869:5;43865:14;43861:28;43851:38;;43841:54;;;:::o;43901:230::-;44041:34;44037:1;44029:6;44025:14;44018:58;44110:13;44105:2;44097:6;44093:15;44086:38;44007:124;:::o;44137:170::-;44277:22;44273:1;44265:6;44261:14;44254:46;44243:64;:::o;44313:164::-;44453:16;44449:1;44441:6;44437:14;44430:40;44419:58;:::o;44483:230::-;44623:34;44619:1;44611:6;44607:14;44600:58;44692:13;44687:2;44679:6;44675:15;44668:38;44589:124;:::o;44719:237::-;44859:34;44855:1;44847:6;44843:14;44836:58;44928:20;44923:2;44915:6;44911:15;44904:45;44825:131;:::o;44962:225::-;45102:34;45098:1;45090:6;45086:14;45079:58;45171:8;45166:2;45158:6;45154:15;45147:33;45068:119;:::o;45193:177::-;45333:29;45329:1;45321:6;45317:14;45310:53;45299:71;:::o;45376:178::-;45516:30;45512:1;45504:6;45500:14;45493:54;45482:72;:::o;45560:223::-;45700:34;45696:1;45688:6;45684:14;45677:58;45769:6;45764:2;45756:6;45752:15;45745:31;45666:117;:::o;45789:175::-;45929:27;45925:1;45917:6;45913:14;45906:51;45895:69;:::o;45970:159::-;46110:11;46106:1;46098:6;46094:14;46087:35;46076:53;:::o;46135:231::-;46275:34;46271:1;46263:6;46259:14;46252:58;46344:14;46339:2;46331:6;46327:15;46320:39;46241:125;:::o;46372:179::-;46512:31;46508:1;46500:6;46496:14;46489:55;46478:73;:::o;46557:166::-;46697:18;46693:1;46685:6;46681:14;46674:42;46663:60;:::o;46729:243::-;46869:34;46865:1;46857:6;46853:14;46846:58;46938:26;46933:2;46925:6;46921:15;46914:51;46835:137;:::o;46978:229::-;47118:34;47114:1;47106:6;47102:14;47095:58;47187:12;47182:2;47174:6;47170:15;47163:37;47084:123;:::o;47213:228::-;47353:34;47349:1;47341:6;47337:14;47330:58;47422:11;47417:2;47409:6;47405:15;47398:36;47319:122;:::o;47447:170::-;47587:22;47583:1;47575:6;47571:14;47564:46;47553:64;:::o;47623:182::-;47763:34;47759:1;47751:6;47747:14;47740:58;47729:76;:::o;47811:231::-;47951:34;47947:1;47939:6;47935:14;47928:58;48020:14;48015:2;48007:6;48003:15;47996:39;47917:125;:::o;48048:182::-;48188:34;48184:1;48176:6;48172:14;48165:58;48154:76;:::o;48236:228::-;48376:34;48372:1;48364:6;48360:14;48353:58;48445:11;48440:2;48432:6;48428:15;48421:36;48342:122;:::o;48470:234::-;48610:34;48606:1;48598:6;48594:14;48587:58;48679:17;48674:2;48666:6;48662:15;48655:42;48576:128;:::o;48710:167::-;48850:19;48846:1;48838:6;48834:14;48827:43;48816:61;:::o;48883:160::-;49023:12;49019:1;49011:6;49007:14;49000:36;48989:54;:::o;49049:220::-;49189:34;49185:1;49177:6;49173:14;49166:58;49258:3;49253:2;49245:6;49241:15;49234:28;49155:114;:::o;49275:174::-;49415:26;49411:1;49403:6;49399:14;49392:50;49381:68;:::o;49455:182::-;49595:34;49591:1;49583:6;49579:14;49572:58;49561:76;:::o;49643:114::-;49749:8;:::o;49763:166::-;49903:18;49899:1;49891:6;49887:14;49880:42;49869:60;:::o;49935:236::-;50075:34;50071:1;50063:6;50059:14;50052:58;50144:19;50139:2;50131:6;50127:15;50120:44;50041:130;:::o;50177:231::-;50317:34;50313:1;50305:6;50301:14;50294:58;50386:14;50381:2;50373:6;50369:15;50362:39;50283:125;:::o;50414:235::-;50554:34;50550:1;50542:6;50538:14;50531:58;50623:18;50618:2;50610:6;50606:15;50599:43;50520:129;:::o;50655:122::-;50728:24;50746:5;50728:24;:::i;:::-;50721:5;50718:35;50708:2;;50767:1;50764;50757:12;50708:2;50698:79;:::o;50783:116::-;50853:21;50868:5;50853:21;:::i;:::-;50846:5;50843:32;50833:2;;50889:1;50886;50879:12;50833:2;50823:76;:::o;50905:120::-;50977:23;50994:5;50977:23;:::i;:::-;50970:5;50967:34;50957:2;;51015:1;51012;51005:12;50957:2;50947:78;:::o;51031:122::-;51104:24;51122:5;51104:24;:::i;:::-;51097:5;51094:35;51084:2;;51143:1;51140;51133:12;51084:2;51074:79;:::o

Swarm Source

ipfs://4734f0bf832cae6991d6ceac37d3f3536fd7e29932f0a467bc71120d0ccffa53

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading
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.