Source Code
More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 114 transactions
| Transaction Hash |
|
Block
|
From
|
To
|
|||||
|---|---|---|---|---|---|---|---|---|---|
| Approve | 27903887 | 54 days ago | IN | 0 ETH | 0 | ||||
| Approve | 20445327 | 227 days ago | IN | 0 ETH | 0 | ||||
| Approve | 19907439 | 239 days ago | IN | 0 ETH | 0.00000007 | ||||
| Approve | 19559385 | 247 days ago | IN | 0 ETH | 0.00000001 | ||||
| Approve | 19549377 | 248 days ago | IN | 0 ETH | 0.00000001 | ||||
| Approve | 14449017 | 366 days ago | IN | 0 ETH | 0.00000118 | ||||
| Approve | 14291159 | 369 days ago | IN | 0 ETH | 0.00000956 | ||||
| Approve | 13930641 | 378 days ago | IN | 0 ETH | 0.00000002 | ||||
| Approve | 13619808 | 385 days ago | IN | 0 ETH | 0.00000007 | ||||
| Approve | 12739498 | 405 days ago | IN | 0 ETH | 0.00000114 | ||||
| Approve | 12291038 | 416 days ago | IN | 0 ETH | 0.00000148 | ||||
| Approve | 11498325 | 434 days ago | IN | 0 ETH | 0.00000076 | ||||
| Approve | 10516479 | 457 days ago | IN | 0 ETH | 0.0000001 | ||||
| Approve | 9951399 | 470 days ago | IN | 0 ETH | 0.00000011 | ||||
| Approve | 9278860 | 485 days ago | IN | 0 ETH | 0.00000024 | ||||
| Approve | 8953672 | 493 days ago | IN | 0 ETH | 0.00000015 | ||||
| Approve | 8642608 | 500 days ago | IN | 0 ETH | 0.00000035 | ||||
| Approve | 8000057 | 515 days ago | IN | 0 ETH | 0.00000134 | ||||
| Approve | 7687724 | 522 days ago | IN | 0 ETH | 0.00000053 | ||||
| Approve | 7378292 | 529 days ago | IN | 0 ETH | 0.00000016 | ||||
| Approve | 6693422 | 545 days ago | IN | 0 ETH | 0.00000019 | ||||
| Approve | 5497886 | 573 days ago | IN | 0 ETH | 0.00000043 | ||||
| Approve | 5431672 | 575 days ago | IN | 0 ETH | 0.00000047 | ||||
| Approve | 5364306 | 576 days ago | IN | 0 ETH | 0.00000047 | ||||
| Approve | 5355890 | 576 days ago | IN | 0 ETH | 0.00000048 |
Latest 1 internal transaction
Advanced mode:
| Parent Transaction Hash | Block | From | To | |||
|---|---|---|---|---|---|---|
| 251505 | 694 days ago | Contract Creation | 0 ETH |
Cross-Chain Transactions
Loading...
Loading
Similar Match Source Code This contract matches the deployed Bytecode of the Source Code for Contract 0x19f630F3...10d9eE968 The constructor portion of the code might be different and could alter the actual behaviour of the contract
Contract Name:
HyperBlastV2Pair
Compiler Version
v0.5.16+commit.9c3226ce
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT
pragma solidity =0.5.16;
import { Math } from "../../../Libraries/Math.sol";
import { SafeMath } from "../../../Libraries/SafeMath.sol";
import { UQ112x112 } from "../../../Libraries/UQ112x112.sol";
import { BlastContract } from "../../../Blast/BlastContractPrior06.sol";
import { IERC20 } from "../../../Interfaces/IERC20.sol";
import { IHyperBlastV2Pair } from "../../Interfaces/IHyperBlastV2Pair.sol";
import { IHyperBlastV2Callee } from "../../Interfaces/IHyperBlastV2Callee.sol";
import { IHyperBlastV2Factory } from "../../Interfaces/IHyperBlastV2Factory.sol";
import { HyperBlastV2ERC20 } from "./HyperBlastV2ERC20.sol";
//import { console } from "hardhat/console.sol";
/* solhint-disable */
contract HyperBlastV2Pair is IHyperBlastV2Pair, HyperBlastV2ERC20, BlastContract {
using SafeMath for uint;
using UQ112x112 for uint224;
uint public constant MINIMUM_LIQUIDITY = 10**3;
bytes4 private constant SELECTOR = bytes4(keccak256(bytes('transfer(address,uint256)')));
address public factory;
address public token0;
address public token1;
uint112 private reserve0; // uses single storage slot, accessible via getReserves
uint112 private reserve1; // uses single storage slot, accessible via getReserves
uint32 private blockTimestampLast; // uses single storage slot, accessible via getReserves
uint public price0CumulativeLast;
uint public price1CumulativeLast;
uint public kLast; // reserve0 * reserve1, as of immediately after the most recent liquidity event
uint private unlocked = 1;
modifier lock() {
require(unlocked == 1, 'HyperBlastV2: LOCKED');
unlocked = 0;
_;
unlocked = 1;
}
function getReserves() public view returns (uint112 _reserve0, uint112 _reserve1, uint32 _blockTimestampLast) {
_reserve0 = reserve0;
_reserve1 = reserve1;
_blockTimestampLast = blockTimestampLast;
}
function _safeTransfer(address token, address to, uint value) private {
(bool success, bytes memory data) = token.call(abi.encodeWithSelector(SELECTOR, to, value));
require(success && (data.length == 0 || abi.decode(data, (bool))), 'HyperBlastV2: TRANSFER_FAILED');
}
event Mint(address indexed sender, uint amount0, uint amount1);
event Burn(address indexed sender, uint amount0, uint amount1, address indexed to);
event Swap(
address indexed sender,
uint amount0In,
uint amount1In,
uint amount0Out,
uint amount1Out,
address indexed to
);
event Sync(uint112 reserve0, uint112 reserve1);
constructor() public {
factory = msg.sender;
configureAutoAllYield();
}
// called once by the factory at time of deployment
function initialize(address _token0, address _token1) external {
require(msg.sender == factory, 'HyperBlastV2: FORBIDDEN'); // sufficient check
token0 = _token0;
token1 = _token1;
}
// update reserves and, on the first call per block, price accumulators
function _update(uint balance0, uint balance1, uint112 _reserve0, uint112 _reserve1) private {
require(balance0 <= uint112(-1) && balance1 <= uint112(-1), 'HyperBlastV2: OVERFLOW');
uint32 blockTimestamp = uint32(block.timestamp % 2**32);
uint32 timeElapsed = blockTimestamp - blockTimestampLast; // overflow is desired
if (timeElapsed > 0 && _reserve0 != 0 && _reserve1 != 0) {
// * never overflows, and + overflow is desired
price0CumulativeLast += uint(UQ112x112.encode(_reserve1).uqdiv(_reserve0)) * timeElapsed;
price1CumulativeLast += uint(UQ112x112.encode(_reserve0).uqdiv(_reserve1)) * timeElapsed;
}
reserve0 = uint112(balance0);
reserve1 = uint112(balance1);
blockTimestampLast = blockTimestamp;
emit Sync(reserve0, reserve1);
}
// if fee is on, mint liquidity equivalent to 1/6th of the growth in sqrt(k)
function _mintFee(uint112 _reserve0, uint112 _reserve1) private returns (bool feeOn) {
address feeTo = IHyperBlastV2Factory(factory).feeTo();
feeOn = feeTo != address(0);
uint _kLast = kLast; // gas savings
if (feeOn) {
if (_kLast != 0) {
uint rootK = Math.sqrt(uint(_reserve0).mul(_reserve1));
uint rootKLast = Math.sqrt(_kLast);
if (rootK > rootKLast) {
uint numerator = totalSupply.mul(rootK.sub(rootKLast));
uint denominator = rootK.mul(5).add(rootKLast);
uint liquidity = numerator / denominator;
if (liquidity > 0) _mint(feeTo, liquidity);
}
}
} else if (_kLast != 0) {
kLast = 0;
}
}
// this low-level function should be called from a contract which performs important safety checks
function mint(address to) external lock returns (uint liquidity) {
(uint112 _reserve0, uint112 _reserve1,) = getReserves(); // gas savings
uint balance0 = IERC20(token0).balanceOf(address(this));
uint balance1 = IERC20(token1).balanceOf(address(this));
uint amount0 = balance0.sub(_reserve0);
uint amount1 = balance1.sub(_reserve1);
bool feeOn = _mintFee(_reserve0, _reserve1);
uint _totalSupply = totalSupply; // gas savings, must be defined here since totalSupply can update in _mintFee
if (_totalSupply == 0) {
liquidity = Math.sqrt(amount0.mul(amount1)).sub(MINIMUM_LIQUIDITY);
_mint(address(0), MINIMUM_LIQUIDITY); // permanently lock the first MINIMUM_LIQUIDITY tokens
} else {
liquidity = Math.min(amount0.mul(_totalSupply) / _reserve0, amount1.mul(_totalSupply) / _reserve1);
}
require(liquidity > 0, 'HyperBlastV2: INSUFFICIENT_LIQUIDITY_MINTED');
_mint(to, liquidity);
_update(balance0, balance1, _reserve0, _reserve1);
if (feeOn) kLast = uint(reserve0).mul(reserve1); // reserve0 and reserve1 are up-to-date
emit Mint(msg.sender, amount0, amount1);
}
// this low-level function should be called from a contract which performs important safety checks
function burn(address to) external lock returns (uint amount0, uint amount1) {
(uint112 _reserve0, uint112 _reserve1,) = getReserves(); // gas savings
address _token0 = token0; // gas savings
address _token1 = token1; // gas savings
uint balance0 = IERC20(_token0).balanceOf(address(this));
uint balance1 = IERC20(_token1).balanceOf(address(this));
uint liquidity = balanceOf[address(this)];
bool feeOn = _mintFee(_reserve0, _reserve1);
uint _totalSupply = totalSupply; // gas savings, must be defined here since totalSupply can update in _mintFee
amount0 = liquidity.mul(balance0) / _totalSupply; // using balances ensures pro-rata distribution
amount1 = liquidity.mul(balance1) / _totalSupply; // using balances ensures pro-rata distribution
require(amount0 > 0 && amount1 > 0, 'HyperBlastV2: INSUFFICIENT_LIQUIDITY_BURNED');
_burn(address(this), liquidity);
_safeTransfer(_token0, to, amount0);
_safeTransfer(_token1, to, amount1);
balance0 = IERC20(_token0).balanceOf(address(this));
balance1 = IERC20(_token1).balanceOf(address(this));
_update(balance0, balance1, _reserve0, _reserve1);
if (feeOn) kLast = uint(reserve0).mul(reserve1); // reserve0 and reserve1 are up-to-date
emit Burn(msg.sender, amount0, amount1, to);
}
// this low-level function should be called from a contract which performs important safety checks
function swap(uint amount0Out, uint amount1Out, address to, bytes calldata data) external lock {
require(amount0Out > 0 || amount1Out > 0, 'HyperBlastV2: INSUFFICIENT_OUTPUT_AMOUNT');
(uint112 _reserve0, uint112 _reserve1,) = getReserves(); // gas savings
require(amount0Out < _reserve0 && amount1Out < _reserve1, 'HyperBlastV2: INSUFFICIENT_LIQUIDITY');
uint balance0;
uint balance1;
{ // scope for _token{0,1}, avoids stack too deep errors
address _token0 = token0;
address _token1 = token1;
require(to != _token0 && to != _token1, 'HyperBlastV2: INVALID_TO');
if (amount0Out > 0) _safeTransfer(_token0, to, amount0Out); // optimistically transfer tokens
if (amount1Out > 0) _safeTransfer(_token1, to, amount1Out); // optimistically transfer tokens
if (data.length > 0) IHyperBlastV2Callee(to).HyperBlastV2Call(msg.sender, amount0Out, amount1Out, data);
balance0 = IERC20(_token0).balanceOf(address(this));
balance1 = IERC20(_token1).balanceOf(address(this));
}
uint amount0In = balance0 > _reserve0 - amount0Out ? balance0 - (_reserve0 - amount0Out) : 0;
uint amount1In = balance1 > _reserve1 - amount1Out ? balance1 - (_reserve1 - amount1Out) : 0;
require(amount0In > 0 || amount1In > 0, 'HyperBlastV2: INSUFFICIENT_INPUT_AMOUNT');
{ // scope for reserve{0,1}Adjusted, avoids stack too deep errors
uint balance0Adjusted = balance0.mul(1000).sub(amount0In.mul(3));
uint balance1Adjusted = balance1.mul(1000).sub(amount1In.mul(3));
// console.log("Balance0Adj %s, Balance1Adj %s", balance0Adjusted, balance1Adjusted);
// console.log("_reserve0 %s, _reserve1 %s", _reserve0, _reserve1);
require(balance0Adjusted.mul(balance1Adjusted) >= uint(_reserve0).mul(_reserve1).mul(1000**2), 'HyperBlastV2: K');
}
_update(balance0, balance1, _reserve0, _reserve1);
emit Swap(msg.sender, amount0In, amount1In, amount0Out, amount1Out, to);
}
// force balances to match reserves
function skim(address to) external lock {
address _token0 = token0; // gas savings
address _token1 = token1; // gas savings
_safeTransfer(_token0, to, IERC20(_token0).balanceOf(address(this)).sub(reserve0));
_safeTransfer(_token1, to, IERC20(_token1).balanceOf(address(this)).sub(reserve1));
}
// force reserves to match balances
function sync() external lock {
_update(IERC20(token0).balanceOf(address(this)), IERC20(token1).balanceOf(address(this)), reserve0, reserve1);
}
function() external payable { }
}// SPDX-License-Identifier: MIT
pragma solidity ^0.5.0;
import { BlastModes } from "../Libraries/BlastModes.sol";
//import { console } from "hardhat/console.sol";
interface IBlast {
// configure
function configureContract(address contractAddress, BlastModes.YieldMode _yield, BlastModes.GasMode gasMode, address governor) external;
function configure(BlastModes.YieldMode _yield, BlastModes.GasMode gasMode, address governor) external;
// base configuration options
function configureClaimableYield() external;
function configureClaimableYieldOnBehalf(address contractAddress) external;
function configureAutomaticYield() external;
function configureAutomaticYieldOnBehalf(address contractAddress) external;
function configureVoidYield() external;
function configureVoidYieldOnBehalf(address contractAddress) external;
function configureClaimableGas() external;
function configureClaimableGasOnBehalf(address contractAddress) external;
function configureVoidGas() external;
function configureVoidGasOnBehalf(address contractAddress) external;
function configureGovernor(address _governor) external;
function configureGovernorOnBehalf(address _newGovernor, address contractAddress) external;
// claim yield
function claimYield(address contractAddress, address recipientOfYield, uint256 amount) external returns (uint256);
function claimAllYield(address contractAddress, address recipientOfYield) external returns (uint256);
// claim gas
function claimAllGas(address contractAddress, address recipientOfGas) external returns (uint256);
function claimGasAtMinClaimRate(address contractAddress, address recipientOfGas, uint256 minClaimRateBips) external returns (uint256);
function claimMaxGas(address contractAddress, address recipientOfGas) external returns (uint256);
function claimGas(address contractAddress, address recipientOfGas, uint256 gasToClaim, uint256 gasSecondsToConsume) external returns (uint256);
// read functions
function readClaimableYield(address contractAddress) external view returns (uint256);
function readYieldConfiguration(address contractAddress) external view returns (uint8);
function readGasParams(address contractAddress) external view returns (uint256 etherSeconds, uint256 etherBalance, uint256 lastUpdated, BlastModes.GasMode);
}
interface IWETHUSDBRebasing {
// changes the yield mode of the caller and update the balance
// to reflect the configuration
function configure(BlastModes.YieldMode) external returns (uint256);
// "claimable" yield mode accounts can call this this claim their yield
// to another address
function claim(address recipient, uint256 amount) external returns (uint256);
// read the claimable amount for an account
function getClaimableAmount(address account) external view returns (uint256);
}
/*solhint-disable*/
/**
* @title BlastContract
* @author HyperBlast team
* @notice Contract to manage yield and gas config
*/
contract BlastContract {
IBlast private blastETHContract = IBlast(0x4300000000000000000000000000000000000002);
IWETHUSDBRebasing private blastYieldUSDB = IWETHUSDBRebasing(0x4300000000000000000000000000000000000003);
IWETHUSDBRebasing private blastYieldWETH = IWETHUSDBRebasing(0x4300000000000000000000000000000000000004);
/**
* @notice The address that can trigger the custom gas functions from this contract
*/
address public blastOwner;
modifier onlyBlastOwner() {
require(msg.sender == blastOwner, "Only blast contract owner can manage blast features");
_;
}
constructor() public {
blastETHContract.configureGovernor(address(this)); //default governor
blastETHContract.configureClaimableGas();
blastOwner = msg.sender; //default owner
}
//#region Ownership
/**
* @notice Only the address set here can call the gas/yield functions from this contract
* @param _blastOwner new gas owner
*/
function setBlastOwner(address _blastOwner) public onlyBlastOwner {
blastOwner = _blastOwner;
}
/**
* @notice
* Be careful, default governor is the own contract, if you set another governor you wont
* be able to use gas/yield functions from this contract anymore
* @param gov new governor
*/
function configureGovernor(address gov) public onlyBlastOwner {
blastETHContract.configureGovernor(gov);
}
//#endregion
//#region YIELD config
function configureAutoETH() internal {
blastETHContract.configureAutomaticYield();
}
function configureClaimableETH() internal {
blastETHContract.configureClaimableYield();
}
function configureAutoUSDB() internal {
blastYieldUSDB.configure(BlastModes.YieldMode.AUTOMATIC);
}
function configureClaimableUSDB() internal {
blastYieldUSDB.configure(BlastModes.YieldMode.CLAIMABLE);
}
function configureAutoWETH() internal {
blastYieldWETH.configure(BlastModes.YieldMode.AUTOMATIC);
}
function configureClaimableWETH() internal {
blastYieldWETH.configure(BlastModes.YieldMode.CLAIMABLE);
}
function configureAutoAllYield() internal {
//console.log('Configuring auto yield...');
configureAutoETH();
configureAutoUSDB();
configureAutoWETH();
//console.log('Auto yield configured! by %s', address(this));
}
function configureClaimableAllYield() internal {
configureClaimableETH();
configureClaimableUSDB();
configureClaimableWETH();
}
//#endregion
//#region YIELD checks
function readClaimableYield() external view returns (uint256) {
return blastETHContract.readClaimableYield(address(this));
}
function readYieldConfiguration() external view returns (uint8) {
return blastETHContract.readYieldConfiguration(address(this));
}
function getClaimableAmountWETH() external view returns (uint256) {
return blastYieldWETH.getClaimableAmount(address(this));
}
function getClaimableAmountUSDB() external view returns (uint256) {
return blastYieldUSDB.getClaimableAmount(address(this));
}
//#endregion
//#region GAS checks
/**
* @notice Gas parameters, from blast docs
* @return etherSeconds
* @return etherBalance
* @return lastUpdated
* @return gasMode
*/
function readGasParams() external view returns (uint256 etherSeconds, uint256 etherBalance, uint256 lastUpdated, BlastModes.GasMode gasMode) {
return blastETHContract.readGasParams(address(this));
}
//#endregion
//#region YIELD claims
function claimYield(address recipient, uint256 amount) external onlyBlastOwner {
blastETHContract.claimYield(address(this), recipient, amount);
}
function claimAllYield(address recipient) external onlyBlastOwner {
blastETHContract.claimAllYield(address(this), recipient);
}
function claimYieldWETH(address recipient, uint256 amount) external onlyBlastOwner {
blastYieldWETH.claim(recipient, amount);
}
function claimYieldUSDB(address recipient, uint256 amount) external onlyBlastOwner {
blastYieldUSDB.claim(recipient, amount);
}
//#endregion
//#region GAS claims
function claimAllGas(address recipient) external onlyBlastOwner {
blastETHContract.claimAllGas(address(this), recipient);
}
function claimMaxGas(address recipient) external onlyBlastOwner {
blastETHContract.claimMaxGas(address(this), recipient);
}
function claimGasAtMinClaimRate(address recipient, uint256 minClaimRateBips) external onlyBlastOwner {
blastETHContract.claimGasAtMinClaimRate(address(this), recipient, minClaimRateBips);
}
function claimGas(address recipient, uint256 etherToClaim, uint256 etherSecondsToConsume) external onlyBlastOwner {
blastETHContract.claimGas(address(this), recipient, etherToClaim, etherSecondsToConsume);
}
//#endregion
}/* solhint-disable */
interface IERC20 {
event Approval(address indexed owner, address indexed spender, uint value);
event Transfer(address indexed from, address indexed to, uint value);
function name() external view returns (string memory);
function symbol() external view returns (string memory);
function decimals() external view returns (uint8);
function totalSupply() external view returns (uint);
function balanceOf(address owner) external view returns (uint);
function allowance(address owner, address spender) external view returns (uint);
function approve(address spender, uint value) external returns (bool);
function transfer(address to, uint value) external returns (bool);
function transferFrom(address from, address to, uint value) external returns (bool);
}library BlastModes {
enum YieldMode {
AUTOMATIC,
VOID,
CLAIMABLE
}
enum GasMode {
VOID,
CLAIMABLE
}
}/* solhint-disable */
library Math {
function min(uint x, uint y) internal pure returns (uint z) {
z = x < y ? x : y;
}
// babylonian method (https://en.wikipedia.org/wiki/Methods_of_computing_square_roots#Babylonian_method)
function sqrt(uint y) internal pure returns (uint z) {
if (y > 3) {
z = y;
uint x = y / 2 + 1;
while (x < z) {
z = x;
x = (y / x + x) / 2;
}
} else if (y != 0) {
z = 1;
}
}
}/* solhint-disable */
library SafeMath {
function add(uint x, uint y) internal pure returns (uint z) {
require((z = x + y) >= x, 'ds-math-add-overflow');
}
function sub(uint x, uint y) internal pure returns (uint z) {
require((z = x - y) <= x, 'ds-math-sub-underflow');
}
function mul(uint x, uint y) internal pure returns (uint z) {
require(y == 0 || (z = x * y) / y == x, 'ds-math-mul-overflow');
}
function div(uint256 a, uint256 b) internal pure returns (uint256) {
return a / b;
}
}/* solhint-disable */
library UQ112x112 {
uint224 constant Q112 = 2**112;
// encode a uint112 as a UQ112x112
function encode(uint112 y) internal pure returns (uint224 z) {
z = uint224(y) * Q112; // never overflows
}
// divide a UQ112x112 by a uint112, returning a UQ112x112
function uqdiv(uint224 x, uint112 y) internal pure returns (uint224 z) {
z = x / uint224(y);
}
}/* solhint-disable */
interface IHyperBlastV2Callee {
function HyperBlastV2Call(address sender, uint amount0, uint amount1, bytes calldata data) external;
}/* solhint-disable */
interface IHyperBlastV2ERC20 {
event Approval(address indexed owner, address indexed spender, uint value);
event Transfer(address indexed from, address indexed to, uint value);
function name() external pure returns (string memory);
function symbol() external pure returns (string memory);
function decimals() external pure returns (uint8);
function totalSupply() external view returns (uint);
function balanceOf(address owner) external view returns (uint);
function allowance(address owner, address spender) external view returns (uint);
function approve(address spender, uint value) external returns (bool);
function transfer(address to, uint value) external returns (bool);
function transferFrom(address from, address to, uint value) external returns (bool);
function DOMAIN_SEPARATOR() external view returns (bytes32);
function PERMIT_TYPEHASH() external pure returns (bytes32);
function nonces(address owner) external view returns (uint);
function permit(address owner, address spender, uint value, uint deadline, uint8 v, bytes32 r, bytes32 s) external;
}/* solhint-disable */
interface IHyperBlastV2Factory {
event PairCreated(address indexed token0, address indexed token1, address pair, uint);
function feeTo() external view returns (address);
function feeToSetter() external view returns (address);
function getPair(address tokenA, address tokenB) external view returns (address pair);
function allPairs(uint) external view returns (address pair);
function allPairsLength() external view returns (uint);
function createPair(address tokenA, address tokenB) external returns (address pair);
function setFeeTo(address) external;
function setFeeToSetter(address) external;
}/* solhint-disable */
interface IHyperBlastV2Pair {
event Approval(address indexed owner, address indexed spender, uint value);
event Transfer(address indexed from, address indexed to, uint value);
function name() external pure returns (string memory);
function symbol() external pure returns (string memory);
function decimals() external pure returns (uint8);
function totalSupply() external view returns (uint);
function balanceOf(address owner) external view returns (uint);
function allowance(address owner, address spender) external view returns (uint);
function approve(address spender, uint value) external returns (bool);
function transfer(address to, uint value) external returns (bool);
function transferFrom(address from, address to, uint value) external returns (bool);
function DOMAIN_SEPARATOR() external view returns (bytes32);
function PERMIT_TYPEHASH() external pure returns (bytes32);
function nonces(address owner) external view returns (uint);
function permit(address owner, address spender, uint value, uint deadline, uint8 v, bytes32 r, bytes32 s) external;
event Mint(address indexed sender, uint amount0, uint amount1);
event Burn(address indexed sender, uint amount0, uint amount1, address indexed to);
event Swap(
address indexed sender,
uint amount0In,
uint amount1In,
uint amount0Out,
uint amount1Out,
address indexed to
);
event Sync(uint112 reserve0, uint112 reserve1);
function MINIMUM_LIQUIDITY() external pure returns (uint);
function factory() external view returns (address);
function token0() external view returns (address);
function token1() external view returns (address);
function getReserves() external view returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast);
function price0CumulativeLast() external view returns (uint);
function price1CumulativeLast() external view returns (uint);
function kLast() external view returns (uint);
function mint(address to) external returns (uint liquidity);
function burn(address to) external returns (uint amount0, uint amount1);
function swap(uint amount0Out, uint amount1Out, address to, bytes calldata data) external;
function skim(address to) external;
function sync() external;
function initialize(address, address) external;
}// SPDX-License-Identifier: MIT
pragma solidity =0.5.16;
import { SafeMath } from "../../../Libraries/SafeMath.sol";
import { IHyperBlastV2ERC20 } from "../../Interfaces/IHyperBlastV2ERC20.sol";
/* solhint-disable */
contract HyperBlastV2ERC20 is IHyperBlastV2ERC20 {
using SafeMath for uint;
string public constant name = 'HyperBlast V2';
string public constant symbol = 'HYPE-V2';
uint8 public constant decimals = 18;
uint public totalSupply;
mapping(address => uint) public balanceOf;
mapping(address => mapping(address => uint)) public allowance;
bytes32 public DOMAIN_SEPARATOR;
// keccak256("Permit(address owner,address spender,uint256 value,uint256 nonce,uint256 deadline)");
bytes32 public constant PERMIT_TYPEHASH = 0x6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c9;
mapping(address => uint) public nonces;
event Approval(address indexed owner, address indexed spender, uint value);
event Transfer(address indexed from, address indexed to, uint value);
constructor() public {
uint chainId;
assembly {
chainId := chainid
}
DOMAIN_SEPARATOR = keccak256(
abi.encode(
keccak256('EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)'),
keccak256(bytes(name)),
keccak256(bytes('1')),
chainId,
address(this)
)
);
}
function _mint(address to, uint value) internal {
totalSupply = totalSupply.add(value);
balanceOf[to] = balanceOf[to].add(value);
emit Transfer(address(0), to, value);
}
function _burn(address from, uint value) internal {
balanceOf[from] = balanceOf[from].sub(value);
totalSupply = totalSupply.sub(value);
emit Transfer(from, address(0), value);
}
function _approve(address owner, address spender, uint value) private {
allowance[owner][spender] = value;
emit Approval(owner, spender, value);
}
function _transfer(address from, address to, uint value) private {
balanceOf[from] = balanceOf[from].sub(value);
balanceOf[to] = balanceOf[to].add(value);
emit Transfer(from, to, value);
}
function approve(address spender, uint value) external returns (bool) {
_approve(msg.sender, spender, value);
return true;
}
function transfer(address to, uint value) external returns (bool) {
_transfer(msg.sender, to, value);
return true;
}
function transferFrom(address from, address to, uint value) external returns (bool) {
if (allowance[from][msg.sender] != uint(-1)) {
allowance[from][msg.sender] = allowance[from][msg.sender].sub(value);
}
_transfer(from, to, value);
return true;
}
function permit(address owner, address spender, uint value, uint deadline, uint8 v, bytes32 r, bytes32 s) external {
require(deadline >= block.timestamp, 'HyperBlastV2: EXPIRED');
bytes32 digest = keccak256(
abi.encodePacked(
'\x19\x01',
DOMAIN_SEPARATOR,
keccak256(abi.encode(PERMIT_TYPEHASH, owner, spender, value, nonces[owner]++, deadline))
)
);
address recoveredAddress = ecrecover(digest, v, r, s);
require(recoveredAddress != address(0) && recoveredAddress == owner, 'HyperBlastV2: INVALID_SIGNATURE');
_approve(owner, spender, value);
}
}// SPDX-License-Identifier: MIT
pragma solidity =0.5.16;
import { IHyperBlastV2Factory } from "../Interfaces/IHyperBlastV2Factory.sol";
import { IHyperBlastV2Pair } from "../Interfaces/IHyperBlastV2Pair.sol";
import { HyperBlastV2Pair } from "../Pairs/v0.5.16/HyperBlastV2Pair.sol";
/* solhint-disable */
contract HyperBlastV2Factory is IHyperBlastV2Factory {
address public feeTo;
address public feeToSetter;
mapping(address => mapping(address => address)) public getPair;
address[] public allPairs;
event PairCreated(address indexed token0, address indexed token1, address pair, uint);
constructor(address _feeToSetter) public {
feeToSetter = _feeToSetter;
}
function allPairsLength() external view returns (uint) {
return allPairs.length;
}
function createPair(address tokenA, address tokenB) external returns (address pair) {
require(tokenA != tokenB, 'HyperBlastV2: IDENTICAL_ADDRESSES');
(address token0, address token1) = tokenA < tokenB ? (tokenA, tokenB) : (tokenB, tokenA);
require(token0 != address(0), 'HyperBlastV2: ZERO_ADDRESS');
require(getPair[token0][token1] == address(0), 'HyperBlastV2: PAIR_EXISTS'); // single check is sufficient
bytes memory bytecode = type(HyperBlastV2Pair).creationCode;
bytes32 salt = keccak256(abi.encodePacked(token0, token1));
assembly {
pair := create2(0, add(bytecode, 32), mload(bytecode), salt)
}
//console.log("BeforeIN");
//console.log("Deployed liq pair %s", pair);
IHyperBlastV2Pair(pair).initialize(token0, token1);
getPair[token0][token1] = pair;
getPair[token1][token0] = pair; // populate mapping in the reverse direction
allPairs.push(pair);
emit PairCreated(token0, token1, pair, allPairs.length);
}
function setFeeTo(address _feeTo) external {
require(msg.sender == feeToSetter, 'HyperBlastV2: FORBIDDEN');
feeTo = _feeTo;
}
function setFeeToSetter(address _feeToSetter) external {
require(msg.sender == feeToSetter, 'HyperBlastV2: FORBIDDEN');
feeToSetter = _feeToSetter;
}
function() external payable { }
}{
"evmVersion": "istanbul",
"optimizer": {
"enabled": true,
"runs": 999999
},
"outputSelection": {
"*": {
"*": [
"evm.bytecode",
"evm.deployedBytecode",
"abi"
]
}
}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"sender","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount0","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount1","type":"uint256"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"Burn","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"sender","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount0","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount1","type":"uint256"}],"name":"Mint","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"sender","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount0In","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount1In","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount0Out","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount1Out","type":"uint256"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"Swap","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint112","name":"reserve0","type":"uint112"},{"indexed":false,"internalType":"uint112","name":"reserve1","type":"uint112"}],"name":"Sync","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"payable":true,"stateMutability":"payable","type":"fallback"},{"constant":true,"inputs":[],"name":"DOMAIN_SEPARATOR","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"MINIMUM_LIQUIDITY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"PERMIT_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"blastOwner","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"to","type":"address"}],"name":"burn","outputs":[{"internalType":"uint256","name":"amount0","type":"uint256"},{"internalType":"uint256","name":"amount1","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"recipient","type":"address"}],"name":"claimAllGas","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"recipient","type":"address"}],"name":"claimAllYield","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"etherToClaim","type":"uint256"},{"internalType":"uint256","name":"etherSecondsToConsume","type":"uint256"}],"name":"claimGas","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"minClaimRateBips","type":"uint256"}],"name":"claimGasAtMinClaimRate","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"recipient","type":"address"}],"name":"claimMaxGas","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"claimYield","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"claimYieldUSDB","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"claimYieldWETH","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"gov","type":"address"}],"name":"configureGovernor","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"factory","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"getClaimableAmountUSDB","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"getClaimableAmountWETH","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"getReserves","outputs":[{"internalType":"uint112","name":"_reserve0","type":"uint112"},{"internalType":"uint112","name":"_reserve1","type":"uint112"},{"internalType":"uint32","name":"_blockTimestampLast","type":"uint32"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_token0","type":"address"},{"internalType":"address","name":"_token1","type":"address"}],"name":"initialize","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"kLast","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"to","type":"address"}],"name":"mint","outputs":[{"internalType":"uint256","name":"liquidity","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"nonces","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"uint256","name":"deadline","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"permit","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"price0CumulativeLast","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"price1CumulativeLast","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"readClaimableYield","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"readGasParams","outputs":[{"internalType":"uint256","name":"etherSeconds","type":"uint256"},{"internalType":"uint256","name":"etherBalance","type":"uint256"},{"internalType":"uint256","name":"lastUpdated","type":"uint256"},{"internalType":"enum BlastModes.GasMode","name":"gasMode","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"readYieldConfiguration","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_blastOwner","type":"address"}],"name":"setBlastOwner","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"to","type":"address"}],"name":"skim","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"amount0Out","type":"uint256"},{"internalType":"uint256","name":"amount1Out","type":"uint256"},{"internalType":"address","name":"to","type":"address"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"swap","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"sync","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"token0","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"token1","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"}]Contract Creation Code
0x6080604052600580546001600160a01b0319908116734300000000000000000000000000000000000002179091556006805482167343000000000000000000000000000000000000031790556007805490911673430000000000000000000000000000000000000417905560016010553480156200007c57600080fd5b5060405146908060526200426c8239604080519182900360520182208282018252600d83526c243cb832b9213630b9ba102b1960991b6020938401528151808301835260018152603160f81b908401528151808401919091527f687b63f1b78056bd947115f235d64eaedcfdc5a94fd7043ecc6ebe561e78b821818301527fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc6606082015260808101949094523060a08086018290528251808703909101815260c0860180845281519190940120600355600554631d70c8d360e31b90935260c4850152516001600160a01b03919091169263eb864698925060e48082019260009290919082900301818387803b1580156200019657600080fd5b505af1158015620001ab573d6000803e3d6000fd5b50505050600560009054906101000a90046001600160a01b03166001600160a01b0316634e606c476040518163ffffffff1660e01b8152600401600060405180830381600087803b1580156200020057600080fd5b505af115801562000215573d6000803e3d6000fd5b505060088054336001600160a01b03199182168117909255600980549091169091179055506200024690506200024c565b620003a4565b6200025f6001600160e01b036200028716565b620002726001600160e01b03620002f316565b620002856001600160e01b036200037416565b565b600560009054906101000a90046001600160a01b03166001600160a01b0316637114177a6040518163ffffffff1660e01b8152600401600060405180830381600087803b158015620002d857600080fd5b505af1158015620002ed573d6000803e3d6000fd5b50505050565b600654604051631a33757d60e01b81526001600160a01b0390911690631a33757d9060009060040180825b60ff168152602001915050602060405180830381600087803b1580156200034457600080fd5b505af115801562000359573d6000803e3d6000fd5b505050506040513d60208110156200037057600080fd5b5050565b600754604051631a33757d60e01b81526001600160a01b0390911690631a33757d9060009060040180826200031e565b613eb880620003b46000396000f3fe6080604052600436106102dc5760003560e01c806389afcb4411610184578063c45a0155116100d6578063d505accf1161008a578063fb7c122511610064578063fb7c122514610c1c578063fcdebcce14610c31578063fff6cae914610c46576102dc565b8063d505accf14610b29578063dd62ed3e14610b94578063eb86469814610bdc576102dc565b8063cf3dac64116100bb578063cf3dac6414610aea578063d21220a714610aff578063d39dd68414610b14576102dc565b8063c45a015514610a95578063cd2002f514610aaa576102dc565b8063a614211211610138578063bc25cf7711610112578063bc25cf77146109cf578063bcd2bf2514610a0f578063c2d94aec14610a55576102dc565b8063a614211214610934578063a9059cbb14610974578063ba9a7a56146109ba576102dc565b806397106b231161016957806397106b231461085c578063a1c32725146108a2578063a44542ec146108ee576102dc565b806389afcb44146107ee57806395d89b4114610847576102dc565b806330adf81f1161023d5780635909c0d5116101f157806370a08231116101cb57806370a08231146107595780637464fc3d146107995780637ecebe00146107ae576102dc565b80635909c0d5146106ef5780635a3d5493146107045780636a62784214610719576102dc565b80633644e515116102225780633644e51514610644578063485cc95514610659578063491ae348146106a1576102dc565b806330adf81f14610604578063313ce56714610619576102dc565b80630dfe1681116102945780631869ebda116102795780631869ebda1461052e57806323b872dd14610574578063272b1323146105c4576102dc565b80630dfe1681146104db57806318160ddd14610519576102dc565b80630902f1ac116102c55780630902f1ac1461040e5780630930a6621461045a578063095ea7b314610481576102dc565b8063022c0d9f146102de57806306fdde0314610384575b005b3480156102ea57600080fd5b506102dc6004803603608081101561030157600080fd5b81359160208101359173ffffffffffffffffffffffffffffffffffffffff604083013516919081019060808101606082013564010000000081111561034557600080fd5b82018360208201111561035757600080fd5b8035906020019184600183028401116401000000008311171561037957600080fd5b509092509050610c5b565b34801561039057600080fd5b5061039961132f565b6040805160208082528351818301528351919283929083019185019080838360005b838110156103d35781810151838201526020016103bb565b50505050905090810190601f1680156104005780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561041a57600080fd5b50610423611368565b604080516dffffffffffffffffffffffffffff948516815292909316602083015263ffffffff168183015290519081900360600190f35b34801561046657600080fd5b5061046f6113bd565b60408051918252519081900360200190f35b34801561048d57600080fd5b506104c7600480360360408110156104a457600080fd5b5073ffffffffffffffffffffffffffffffffffffffff813516906020013561145f565b604080519115158252519081900360200190f35b3480156104e757600080fd5b506104f0611476565b6040805173ffffffffffffffffffffffffffffffffffffffff9092168252519081900360200190f35b34801561052557600080fd5b5061046f611492565b34801561053a57600080fd5b506102dc6004803603604081101561055157600080fd5b5073ffffffffffffffffffffffffffffffffffffffff8135169060200135611498565b34801561058057600080fd5b506104c76004803603606081101561059757600080fd5b5073ffffffffffffffffffffffffffffffffffffffff8135811691602081013590911690604001356115ba565b3480156105d057600080fd5b506102dc600480360360208110156105e757600080fd5b503573ffffffffffffffffffffffffffffffffffffffff16611699565b34801561061057600080fd5b5061046f6117b3565b34801561062557600080fd5b5061062e6117d7565b6040805160ff9092168252519081900360200190f35b34801561065057600080fd5b5061046f6117dc565b34801561066557600080fd5b506102dc6004803603604081101561067c57600080fd5b5073ffffffffffffffffffffffffffffffffffffffff813581169160200135166117e2565b3480156106ad57600080fd5b506106b66118bb565b604051808581526020018481526020018381526020018260018111156106d857fe5b60ff16815260200194505050505060405180910390f35b3480156106fb57600080fd5b5061046f61197d565b34801561071057600080fd5b5061046f611983565b34801561072557600080fd5b5061046f6004803603602081101561073c57600080fd5b503573ffffffffffffffffffffffffffffffffffffffff16611989565b34801561076557600080fd5b5061046f6004803603602081101561077c57600080fd5b503573ffffffffffffffffffffffffffffffffffffffff16611d43565b3480156107a557600080fd5b5061046f611d55565b3480156107ba57600080fd5b5061046f600480360360208110156107d157600080fd5b503573ffffffffffffffffffffffffffffffffffffffff16611d5b565b3480156107fa57600080fd5b5061082e6004803603602081101561081157600080fd5b503573ffffffffffffffffffffffffffffffffffffffff16611d6d565b6040805192835260208301919091528051918290030190f35b34801561085357600080fd5b5061039961220a565b34801561086857600080fd5b506102dc6004803603604081101561087f57600080fd5b5073ffffffffffffffffffffffffffffffffffffffff8135169060200135612243565b3480156108ae57600080fd5b506102dc600480360360608110156108c557600080fd5b5073ffffffffffffffffffffffffffffffffffffffff813516906020810135906040013561232f565b3480156108fa57600080fd5b506102dc6004803603604081101561091157600080fd5b5073ffffffffffffffffffffffffffffffffffffffff8135169060200135612459565b34801561094057600080fd5b506102dc6004803603602081101561095757600080fd5b503573ffffffffffffffffffffffffffffffffffffffff16612545565b34801561098057600080fd5b506104c76004803603604081101561099757600080fd5b5073ffffffffffffffffffffffffffffffffffffffff81351690602001356125fc565b3480156109c657600080fd5b5061046f612609565b3480156109db57600080fd5b506102dc600480360360208110156109f257600080fd5b503573ffffffffffffffffffffffffffffffffffffffff1661260f565b348015610a1b57600080fd5b506102dc60048036036040811015610a3257600080fd5b5073ffffffffffffffffffffffffffffffffffffffff8135169060200135612805565b348015610a6157600080fd5b506102dc60048036036020811015610a7857600080fd5b503573ffffffffffffffffffffffffffffffffffffffff166128f7565b348015610aa157600080fd5b506104f06129e2565b348015610ab657600080fd5b506102dc60048036036020811015610acd57600080fd5b503573ffffffffffffffffffffffffffffffffffffffff166129fe565b348015610af657600080fd5b5061046f612ae9565b348015610b0b57600080fd5b506104f0612b5a565b348015610b2057600080fd5b5061046f612b76565b348015610b3557600080fd5b506102dc600480360360e0811015610b4c57600080fd5b5073ffffffffffffffffffffffffffffffffffffffff813581169160208101359091169060408101359060608101359060ff6080820135169060a08101359060c00135612be7565b348015610ba057600080fd5b5061046f60048036036040811015610bb757600080fd5b5073ffffffffffffffffffffffffffffffffffffffff81358116916020013516612eb3565b348015610be857600080fd5b506102dc60048036036020811015610bff57600080fd5b503573ffffffffffffffffffffffffffffffffffffffff16612ed0565b348015610c2857600080fd5b5061062e612fc8565b348015610c3d57600080fd5b506104f0613039565b348015610c5257600080fd5b506102dc613055565b601054600114610ccc57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601460248201527f4879706572426c61737456323a204c4f434b4544000000000000000000000000604482015290519081900360640190fd5b600060105584151580610cdf5750600084115b610d34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526028815260200180613dbb6028913960400191505060405180910390fd5b600080610d3f611368565b5091509150816dffffffffffffffffffffffffffff1687108015610d725750806dffffffffffffffffffffffffffff1686105b610dc7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526024815260200180613e606024913960400191505060405180910390fd5b600a54600b54600091829173ffffffffffffffffffffffffffffffffffffffff918216919081169089168214801590610e2c57508073ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff1614155b610e9757604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601860248201527f4879706572426c61737456323a20494e56414c49445f544f0000000000000000604482015290519081900360640190fd5b8a15610ea857610ea8828a8d61323b565b8915610eb957610eb9818a8c61323b565b8615610f9b578873ffffffffffffffffffffffffffffffffffffffff1663ffba5c07338d8d8c8c6040518663ffffffff1660e01b8152600401808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001858152602001848152602001806020018281038252848482818152602001925080828437600081840152601f19601f8201169050808301925050509650505050505050600060405180830381600087803b158015610f8257600080fd5b505af1158015610f96573d6000803e3d6000fd5b505050505b604080517f70a08231000000000000000000000000000000000000000000000000000000008152306004820152905173ffffffffffffffffffffffffffffffffffffffff8416916370a08231916024808301926020929190829003018186803b15801561100757600080fd5b505afa15801561101b573d6000803e3d6000fd5b505050506040513d602081101561103157600080fd5b5051604080517f70a08231000000000000000000000000000000000000000000000000000000008152306004820152905191955073ffffffffffffffffffffffffffffffffffffffff8316916370a0823191602480820192602092909190829003018186803b1580156110a357600080fd5b505afa1580156110b7573d6000803e3d6000fd5b505050506040513d60208110156110cd57600080fd5b5051925060009150506dffffffffffffffffffffffffffff85168a900383116110f757600061110d565b89856dffffffffffffffffffffffffffff160383035b9050600089856dffffffffffffffffffffffffffff16038311611131576000611147565b89856dffffffffffffffffffffffffffff160383035b905060008211806111585750600081115b6111ad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526027815260200180613de36027913960400191505060405180910390fd5b60006111e16111c384600363ffffffff61344116565b6111d5876103e863ffffffff61344116565b9063ffffffff6134c716565b905060006111f96111c384600363ffffffff61344116565b9050611231620f42406112256dffffffffffffffffffffffffffff8b8116908b1663ffffffff61344116565b9063ffffffff61344116565b611241838363ffffffff61344116565b10156112ae57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600f60248201527f4879706572426c61737456323a204b0000000000000000000000000000000000604482015290519081900360640190fd5b50506112bc84848888613539565b60408051838152602081018390528082018d9052606081018c9052905173ffffffffffffffffffffffffffffffffffffffff8b169133917fd78ad95fa46c994b6551d0da85fc275fe613ce37657fb8d5e3d130840159d8229181900360800190a350506001601055505050505050505050565b6040518060400160405280600d81526020017f4879706572426c6173742056320000000000000000000000000000000000000081525081565b600c546dffffffffffffffffffffffffffff808216926e0100000000000000000000000000008304909116917c0100000000000000000000000000000000000000000000000000000000900463ffffffff1690565b600654604080517fe12f3a61000000000000000000000000000000000000000000000000000000008152306004820152905160009273ffffffffffffffffffffffffffffffffffffffff169163e12f3a61916024808301926020929190829003018186803b15801561142e57600080fd5b505afa158015611442573d6000803e3d6000fd5b505050506040513d602081101561145857600080fd5b5051905090565b600061146c3384846137f5565b5060015b92915050565b600a5473ffffffffffffffffffffffffffffffffffffffff1681565b60005481565b60085473ffffffffffffffffffffffffffffffffffffffff163314611508576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526033815260200180613d886033913960400191505060405180910390fd5b600554604080517ff971966200000000000000000000000000000000000000000000000000000000815230600482015273ffffffffffffffffffffffffffffffffffffffff8581166024830152604482018590529151919092169163f97196629160648083019260209291908290030181600087803b15801561158a57600080fd5b505af115801561159e573d6000803e3d6000fd5b505050506040513d60208110156115b457600080fd5b50505050565b73ffffffffffffffffffffffffffffffffffffffff831660009081526002602090815260408083203384529091528120547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff146116845773ffffffffffffffffffffffffffffffffffffffff84166000908152600260209081526040808320338452909152902054611652908363ffffffff6134c716565b73ffffffffffffffffffffffffffffffffffffffff851660009081526002602090815260408083203384529091529020555b61168f848484613864565b5060019392505050565b60085473ffffffffffffffffffffffffffffffffffffffff163314611709576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526033815260200180613d886033913960400191505060405180910390fd5b600554604080517f954fa5ee00000000000000000000000000000000000000000000000000000000815230600482015273ffffffffffffffffffffffffffffffffffffffff84811660248301529151919092169163954fa5ee9160448083019260209291908290030181600087803b15801561178457600080fd5b505af1158015611798573d6000803e3d6000fd5b505050506040513d60208110156117ae57600080fd5b505050565b7f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c981565b601281565b60035481565b60095473ffffffffffffffffffffffffffffffffffffffff16331461186857604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601760248201527f4879706572426c61737456323a20464f5242494444454e000000000000000000604482015290519081900360640190fd5b600a805473ffffffffffffffffffffffffffffffffffffffff9384167fffffffffffffffffffffffff000000000000000000000000000000000000000091821617909155600b8054929093169116179055565b600554604080517fdde798a4000000000000000000000000000000000000000000000000000000008152306004820152905160009283928392839273ffffffffffffffffffffffffffffffffffffffff169163dde798a4916024808301926080929190829003018186803b15801561193257600080fd5b505afa158015611946573d6000803e3d6000fd5b505050506040513d608081101561195c57600080fd5b50805160208201516040830151606090930151919790965091945092509050565b600d5481565b600e5481565b60006010546001146119fc57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601460248201527f4879706572426c61737456323a204c4f434b4544000000000000000000000000604482015290519081900360640190fd5b6000601081905580611a0c611368565b50600a54604080517f70a08231000000000000000000000000000000000000000000000000000000008152306004820152905193955091935060009273ffffffffffffffffffffffffffffffffffffffff909116916370a08231916024808301926020929190829003018186803b158015611a8657600080fd5b505afa158015611a9a573d6000803e3d6000fd5b505050506040513d6020811015611ab057600080fd5b5051600b54604080517f70a08231000000000000000000000000000000000000000000000000000000008152306004820152905192935060009273ffffffffffffffffffffffffffffffffffffffff909216916370a0823191602480820192602092909190829003018186803b158015611b2957600080fd5b505afa158015611b3d573d6000803e3d6000fd5b505050506040513d6020811015611b5357600080fd5b505190506000611b79836dffffffffffffffffffffffffffff871663ffffffff6134c716565b90506000611b9d836dffffffffffffffffffffffffffff871663ffffffff6134c716565b90506000611bab8787613945565b60005490915080611be857611bd46103e86111d5611bcf878763ffffffff61344116565b613ad1565b9850611be360006103e8613b23565b611c45565b611c426dffffffffffffffffffffffffffff8916611c0c868463ffffffff61344116565b81611c1357fe5b046dffffffffffffffffffffffffffff8916611c35868563ffffffff61344116565b81611c3c57fe5b04613bd3565b98505b60008911611c9e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602b815260200180613e0a602b913960400191505060405180910390fd5b611ca88a8a613b23565b611cb486868a8a613539565b8115611cf657600c54611cf2906dffffffffffffffffffffffffffff808216916e01000000000000000000000000000090041663ffffffff61344116565b600f555b6040805185815260208101859052815133927f4c209b5fc8ad50758f13e2e1088ba56a560dff690a1c6fef26394f4c03821c4f928290030190a25050600160105550949695505050505050565b60016020526000908152604090205481565b600f5481565b60046020526000908152604090205481565b600080601054600114611de157604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601460248201527f4879706572426c61737456323a204c4f434b4544000000000000000000000000604482015290519081900360640190fd5b6000601081905580611df1611368565b50600a54600b54604080517f70a08231000000000000000000000000000000000000000000000000000000008152306004820152905194965092945073ffffffffffffffffffffffffffffffffffffffff9182169391169160009184916370a08231916024808301926020929190829003018186803b158015611e7357600080fd5b505afa158015611e87573d6000803e3d6000fd5b505050506040513d6020811015611e9d57600080fd5b5051604080517f70a08231000000000000000000000000000000000000000000000000000000008152306004820152905191925060009173ffffffffffffffffffffffffffffffffffffffff8516916370a08231916024808301926020929190829003018186803b158015611f1157600080fd5b505afa158015611f25573d6000803e3d6000fd5b505050506040513d6020811015611f3b57600080fd5b505130600090815260016020526040812054919250611f5a8888613945565b60005490915080611f71848763ffffffff61344116565b81611f7857fe5b049a5080611f8c848663ffffffff61344116565b81611f9357fe5b04995060008b118015611fa6575060008a115b611ffb576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602b815260200180613e35602b913960400191505060405180910390fd5b6120053084613beb565b612010878d8d61323b565b61201b868d8c61323b565b604080517f70a08231000000000000000000000000000000000000000000000000000000008152306004820152905173ffffffffffffffffffffffffffffffffffffffff8916916370a08231916024808301926020929190829003018186803b15801561208757600080fd5b505afa15801561209b573d6000803e3d6000fd5b505050506040513d60208110156120b157600080fd5b5051604080517f70a08231000000000000000000000000000000000000000000000000000000008152306004820152905191965073ffffffffffffffffffffffffffffffffffffffff8816916370a0823191602480820192602092909190829003018186803b15801561212357600080fd5b505afa158015612137573d6000803e3d6000fd5b505050506040513d602081101561214d57600080fd5b5051935061215d85858b8b613539565b811561219f57600c5461219b906dffffffffffffffffffffffffffff808216916e01000000000000000000000000000090041663ffffffff61344116565b600f555b604080518c8152602081018c9052815173ffffffffffffffffffffffffffffffffffffffff8f169233927fdccd412f0b1252819cb1fd330b93224ca42612892bb3f4f789976e6d81936496929081900390910190a35050505050505050506001601081905550915091565b6040518060400160405280600781526020017f485950452d56320000000000000000000000000000000000000000000000000081525081565b60085473ffffffffffffffffffffffffffffffffffffffff1633146122b3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526033815260200180613d886033913960400191505060405180910390fd5b600754604080517faad3ec9600000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff8581166004830152602482018590529151919092169163aad3ec969160448083019260209291908290030181600087803b15801561158a57600080fd5b60085473ffffffffffffffffffffffffffffffffffffffff16331461239f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526033815260200180613d886033913960400191505060405180910390fd5b600554604080517ffafce39e00000000000000000000000000000000000000000000000000000000815230600482015273ffffffffffffffffffffffffffffffffffffffff868116602483015260448201869052606482018590529151919092169163fafce39e9160848083019260209291908290030181600087803b15801561242857600080fd5b505af115801561243c573d6000803e3d6000fd5b505050506040513d602081101561245257600080fd5b5050505050565b60085473ffffffffffffffffffffffffffffffffffffffff1633146124c9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526033815260200180613d886033913960400191505060405180910390fd5b600654604080517faad3ec9600000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff8581166004830152602482018590529151919092169163aad3ec969160448083019260209291908290030181600087803b15801561158a57600080fd5b60085473ffffffffffffffffffffffffffffffffffffffff1633146125b5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526033815260200180613d886033913960400191505060405180910390fd5b600880547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b600061146c338484613864565b6103e881565b60105460011461268057604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601460248201527f4879706572426c61737456323a204c4f434b4544000000000000000000000000604482015290519081900360640190fd5b6000601055600a54600b54600c54604080517f70a08231000000000000000000000000000000000000000000000000000000008152306004820152905173ffffffffffffffffffffffffffffffffffffffff948516949093169261275c9285928792612757926dffffffffffffffffffffffffffff169185916370a0823191602480820192602092909190829003018186803b15801561271f57600080fd5b505afa158015612733573d6000803e3d6000fd5b505050506040513d602081101561274957600080fd5b50519063ffffffff6134c716565b61323b565b600c54604080517f70a0823100000000000000000000000000000000000000000000000000000000815230600482015290516127fb9284928792612757926e01000000000000000000000000000090046dffffffffffffffffffffffffffff169173ffffffffffffffffffffffffffffffffffffffff8616916370a0823191602480820192602092909190829003018186803b15801561271f57600080fd5b5050600160105550565b60085473ffffffffffffffffffffffffffffffffffffffff163314612875576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526033815260200180613d886033913960400191505060405180910390fd5b600554604080517f0951888f00000000000000000000000000000000000000000000000000000000815230600482015273ffffffffffffffffffffffffffffffffffffffff85811660248301526044820185905291519190921691630951888f9160648083019260209291908290030181600087803b15801561158a57600080fd5b60085473ffffffffffffffffffffffffffffffffffffffff163314612967576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526033815260200180613d886033913960400191505060405180910390fd5b600554604080517f860043b600000000000000000000000000000000000000000000000000000000815230600482015273ffffffffffffffffffffffffffffffffffffffff84811660248301529151919092169163860043b69160448083019260209291908290030181600087803b15801561178457600080fd5b60095473ffffffffffffffffffffffffffffffffffffffff1681565b60085473ffffffffffffffffffffffffffffffffffffffff163314612a6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526033815260200180613d886033913960400191505060405180910390fd5b600554604080517f662aa11d00000000000000000000000000000000000000000000000000000000815230600482015273ffffffffffffffffffffffffffffffffffffffff84811660248301529151919092169163662aa11d9160448083019260209291908290030181600087803b15801561178457600080fd5b600754604080517fe12f3a61000000000000000000000000000000000000000000000000000000008152306004820152905160009273ffffffffffffffffffffffffffffffffffffffff169163e12f3a61916024808301926020929190829003018186803b15801561142e57600080fd5b600b5473ffffffffffffffffffffffffffffffffffffffff1681565b600554604080517fec3278e8000000000000000000000000000000000000000000000000000000008152306004820152905160009273ffffffffffffffffffffffffffffffffffffffff169163ec3278e8916024808301926020929190829003018186803b15801561142e57600080fd5b42841015612c5657604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601560248201527f4879706572426c61737456323a20455850495245440000000000000000000000604482015290519081900360640190fd5b60035473ffffffffffffffffffffffffffffffffffffffff80891660008181526004602090815260408083208054600180820190925582517f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c98186015280840196909652958d166060860152608085018c905260a085019590955260c08085018b90528151808603909101815260e0850182528051908301207f19010000000000000000000000000000000000000000000000000000000000006101008601526101028501969096526101228085019690965280518085039096018652610142840180825286519683019690962095839052610162840180825286905260ff89166101828501526101a284018890526101c28401879052519193926101e2808201937fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe081019281900390910190855afa158015612db7573d6000803e3d6000fd5b50506040517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0015191505073ffffffffffffffffffffffffffffffffffffffff811615801590612e3257508873ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16145b612e9d57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f4879706572426c61737456323a20494e56414c49445f5349474e415455524500604482015290519081900360640190fd5b612ea88989896137f5565b505050505050505050565b600260209081526000928352604080842090915290825290205481565b60085473ffffffffffffffffffffffffffffffffffffffff163314612f40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526033815260200180613d886033913960400191505060405180910390fd5b600554604080517feb86469800000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff84811660048301529151919092169163eb86469891602480830192600092919082900301818387803b158015612fb457600080fd5b505af1158015612452573d6000803e3d6000fd5b600554604080517ffd8c4b9d000000000000000000000000000000000000000000000000000000008152306004820152905160009273ffffffffffffffffffffffffffffffffffffffff169163fd8c4b9d916024808301926020929190829003018186803b15801561142e57600080fd5b60085473ffffffffffffffffffffffffffffffffffffffff1681565b6010546001146130c657604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601460248201527f4879706572426c61737456323a204c4f434b4544000000000000000000000000604482015290519081900360640190fd5b6000601055600a54604080517f70a0823100000000000000000000000000000000000000000000000000000000815230600482015290516132349273ffffffffffffffffffffffffffffffffffffffff16916370a08231916024808301926020929190829003018186803b15801561313d57600080fd5b505afa158015613151573d6000803e3d6000fd5b505050506040513d602081101561316757600080fd5b5051600b54604080517f70a08231000000000000000000000000000000000000000000000000000000008152306004820152905173ffffffffffffffffffffffffffffffffffffffff909216916370a0823191602480820192602092909190829003018186803b1580156131da57600080fd5b505afa1580156131ee573d6000803e3d6000fd5b505050506040513d602081101561320457600080fd5b5051600c546dffffffffffffffffffffffffffff808216916e010000000000000000000000000000900416613539565b6001601055565b604080518082018252601981527f7472616e7366657228616464726573732c75696e743235362900000000000000602091820152815173ffffffffffffffffffffffffffffffffffffffff85811660248301526044808301869052845180840390910181526064909201845291810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167fa9059cbb000000000000000000000000000000000000000000000000000000001781529251815160009460609489169392918291908083835b6020831061334157805182527fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe09092019160209182019101613304565b6001836020036101000a0380198251168184511680821785525050505050509050019150506000604051808303816000865af19150503d80600081146133a3576040519150601f19603f3d011682016040523d82523d6000602084013e6133a8565b606091505b50915091508180156133d65750805115806133d657508080602001905160208110156133d357600080fd5b50515b61245257604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f4879706572426c61737456323a205452414e534645525f4641494c4544000000604482015290519081900360640190fd5b600081158061345c5750508082028282828161345957fe5b04145b61147057604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601460248201527f64732d6d6174682d6d756c2d6f766572666c6f77000000000000000000000000604482015290519081900360640190fd5b8082038281111561147057604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601560248201527f64732d6d6174682d7375622d756e646572666c6f770000000000000000000000604482015290519081900360640190fd5b6dffffffffffffffffffffffffffff841180159061356557506dffffffffffffffffffffffffffff8311155b6135d057604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601660248201527f4879706572426c61737456323a204f564552464c4f5700000000000000000000604482015290519081900360640190fd5b600c5463ffffffff428116917c01000000000000000000000000000000000000000000000000000000009004811682039081161580159061362057506dffffffffffffffffffffffffffff841615155b801561363b57506dffffffffffffffffffffffffffff831615155b156136eb578063ffffffff1661367e8561365486613cb0565b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff169063ffffffff613cd416565b600d80547bffffffffffffffffffffffffffffffffffffffffffffffffffffffff929092169290920201905563ffffffff81166136be8461365487613cb0565b600e80547bffffffffffffffffffffffffffffffffffffffffffffffffffffffff92909216929092020190555b600c80547fffffffffffffffffffffffffffffffffffff0000000000000000000000000000166dffffffffffffffffffffffffffff888116919091177fffffffff0000000000000000000000000000ffffffffffffffffffffffffffff166e0100000000000000000000000000008883168102919091177bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167c010000000000000000000000000000000000000000000000000000000063ffffffff871602179283905560408051848416815291909304909116602082015281517f1c411e9a96e071241c2f21f7726b17ae89e3cab4c78be50e062b03a9fffbbad1929181900390910190a1505050505050565b73ffffffffffffffffffffffffffffffffffffffff808416600081815260026020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b73ffffffffffffffffffffffffffffffffffffffff831660009081526001602052604090205461389a908263ffffffff6134c716565b73ffffffffffffffffffffffffffffffffffffffff80851660009081526001602052604080822093909355908416815220546138dc908263ffffffff613d1516565b73ffffffffffffffffffffffffffffffffffffffff80841660008181526001602090815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b600080600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663017e7e586040518163ffffffff1660e01b815260040160206040518083038186803b1580156139b057600080fd5b505afa1580156139c4573d6000803e3d6000fd5b505050506040513d60208110156139da57600080fd5b5051600f5473ffffffffffffffffffffffffffffffffffffffff8216158015945091925090613abd578015613ab8576000613a31611bcf6dffffffffffffffffffffffffffff88811690881663ffffffff61344116565b90506000613a3e83613ad1565b905080821115613ab5576000613a6c613a5d848463ffffffff6134c716565b6000549063ffffffff61344116565b90506000613a9183613a8586600563ffffffff61344116565b9063ffffffff613d1516565b90506000818381613a9e57fe5b0490508015613ab157613ab18782613b23565b5050505b50505b613ac9565b8015613ac9576000600f555b505092915050565b60006003821115613b14575080600160028204015b81811015613b0e57809150600281828581613afd57fe5b040181613b0657fe5b049050613ae6565b50613b1e565b8115613b1e575060015b919050565b600054613b36908263ffffffff613d1516565b600090815573ffffffffffffffffffffffffffffffffffffffff8316815260016020526040902054613b6e908263ffffffff613d1516565b73ffffffffffffffffffffffffffffffffffffffff831660008181526001602090815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b6000818310613be25781613be4565b825b9392505050565b73ffffffffffffffffffffffffffffffffffffffff8216600090815260016020526040902054613c21908263ffffffff6134c716565b73ffffffffffffffffffffffffffffffffffffffff831660009081526001602052604081209190915554613c5b908263ffffffff6134c716565b600090815560408051838152905173ffffffffffffffffffffffffffffffffffffffff8516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef919081900360200190a35050565b6dffffffffffffffffffffffffffff166e0100000000000000000000000000000290565b60006dffffffffffffffffffffffffffff82167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff841681613d0d57fe5b049392505050565b8082018281101561147057604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601460248201527f64732d6d6174682d6164642d6f766572666c6f77000000000000000000000000604482015290519081900360640190fdfe4f6e6c7920626c61737420636f6e7472616374206f776e65722063616e206d616e61676520626c6173742066656174757265734879706572426c61737456323a20494e53554646494349454e545f4f55545055545f414d4f554e544879706572426c61737456323a20494e53554646494349454e545f494e5055545f414d4f554e544879706572426c61737456323a20494e53554646494349454e545f4c49515549444954595f4d494e5445444879706572426c61737456323a20494e53554646494349454e545f4c49515549444954595f4255524e45444879706572426c61737456323a20494e53554646494349454e545f4c4951554944495459a265627a7a7231582006068345b46eae497229f7412094098ca6d2f41fd8156db82d1f02c0bd9617a464736f6c63430005100032454950373132446f6d61696e28737472696e67206e616d652c737472696e672076657273696f6e2c75696e7432353620636861696e49642c6164647265737320766572696679696e67436f6e747261637429
Deployed Bytecode
0x6080604052600436106102dc5760003560e01c806389afcb4411610184578063c45a0155116100d6578063d505accf1161008a578063fb7c122511610064578063fb7c122514610c1c578063fcdebcce14610c31578063fff6cae914610c46576102dc565b8063d505accf14610b29578063dd62ed3e14610b94578063eb86469814610bdc576102dc565b8063cf3dac64116100bb578063cf3dac6414610aea578063d21220a714610aff578063d39dd68414610b14576102dc565b8063c45a015514610a95578063cd2002f514610aaa576102dc565b8063a614211211610138578063bc25cf7711610112578063bc25cf77146109cf578063bcd2bf2514610a0f578063c2d94aec14610a55576102dc565b8063a614211214610934578063a9059cbb14610974578063ba9a7a56146109ba576102dc565b806397106b231161016957806397106b231461085c578063a1c32725146108a2578063a44542ec146108ee576102dc565b806389afcb44146107ee57806395d89b4114610847576102dc565b806330adf81f1161023d5780635909c0d5116101f157806370a08231116101cb57806370a08231146107595780637464fc3d146107995780637ecebe00146107ae576102dc565b80635909c0d5146106ef5780635a3d5493146107045780636a62784214610719576102dc565b80633644e515116102225780633644e51514610644578063485cc95514610659578063491ae348146106a1576102dc565b806330adf81f14610604578063313ce56714610619576102dc565b80630dfe1681116102945780631869ebda116102795780631869ebda1461052e57806323b872dd14610574578063272b1323146105c4576102dc565b80630dfe1681146104db57806318160ddd14610519576102dc565b80630902f1ac116102c55780630902f1ac1461040e5780630930a6621461045a578063095ea7b314610481576102dc565b8063022c0d9f146102de57806306fdde0314610384575b005b3480156102ea57600080fd5b506102dc6004803603608081101561030157600080fd5b81359160208101359173ffffffffffffffffffffffffffffffffffffffff604083013516919081019060808101606082013564010000000081111561034557600080fd5b82018360208201111561035757600080fd5b8035906020019184600183028401116401000000008311171561037957600080fd5b509092509050610c5b565b34801561039057600080fd5b5061039961132f565b6040805160208082528351818301528351919283929083019185019080838360005b838110156103d35781810151838201526020016103bb565b50505050905090810190601f1680156104005780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561041a57600080fd5b50610423611368565b604080516dffffffffffffffffffffffffffff948516815292909316602083015263ffffffff168183015290519081900360600190f35b34801561046657600080fd5b5061046f6113bd565b60408051918252519081900360200190f35b34801561048d57600080fd5b506104c7600480360360408110156104a457600080fd5b5073ffffffffffffffffffffffffffffffffffffffff813516906020013561145f565b604080519115158252519081900360200190f35b3480156104e757600080fd5b506104f0611476565b6040805173ffffffffffffffffffffffffffffffffffffffff9092168252519081900360200190f35b34801561052557600080fd5b5061046f611492565b34801561053a57600080fd5b506102dc6004803603604081101561055157600080fd5b5073ffffffffffffffffffffffffffffffffffffffff8135169060200135611498565b34801561058057600080fd5b506104c76004803603606081101561059757600080fd5b5073ffffffffffffffffffffffffffffffffffffffff8135811691602081013590911690604001356115ba565b3480156105d057600080fd5b506102dc600480360360208110156105e757600080fd5b503573ffffffffffffffffffffffffffffffffffffffff16611699565b34801561061057600080fd5b5061046f6117b3565b34801561062557600080fd5b5061062e6117d7565b6040805160ff9092168252519081900360200190f35b34801561065057600080fd5b5061046f6117dc565b34801561066557600080fd5b506102dc6004803603604081101561067c57600080fd5b5073ffffffffffffffffffffffffffffffffffffffff813581169160200135166117e2565b3480156106ad57600080fd5b506106b66118bb565b604051808581526020018481526020018381526020018260018111156106d857fe5b60ff16815260200194505050505060405180910390f35b3480156106fb57600080fd5b5061046f61197d565b34801561071057600080fd5b5061046f611983565b34801561072557600080fd5b5061046f6004803603602081101561073c57600080fd5b503573ffffffffffffffffffffffffffffffffffffffff16611989565b34801561076557600080fd5b5061046f6004803603602081101561077c57600080fd5b503573ffffffffffffffffffffffffffffffffffffffff16611d43565b3480156107a557600080fd5b5061046f611d55565b3480156107ba57600080fd5b5061046f600480360360208110156107d157600080fd5b503573ffffffffffffffffffffffffffffffffffffffff16611d5b565b3480156107fa57600080fd5b5061082e6004803603602081101561081157600080fd5b503573ffffffffffffffffffffffffffffffffffffffff16611d6d565b6040805192835260208301919091528051918290030190f35b34801561085357600080fd5b5061039961220a565b34801561086857600080fd5b506102dc6004803603604081101561087f57600080fd5b5073ffffffffffffffffffffffffffffffffffffffff8135169060200135612243565b3480156108ae57600080fd5b506102dc600480360360608110156108c557600080fd5b5073ffffffffffffffffffffffffffffffffffffffff813516906020810135906040013561232f565b3480156108fa57600080fd5b506102dc6004803603604081101561091157600080fd5b5073ffffffffffffffffffffffffffffffffffffffff8135169060200135612459565b34801561094057600080fd5b506102dc6004803603602081101561095757600080fd5b503573ffffffffffffffffffffffffffffffffffffffff16612545565b34801561098057600080fd5b506104c76004803603604081101561099757600080fd5b5073ffffffffffffffffffffffffffffffffffffffff81351690602001356125fc565b3480156109c657600080fd5b5061046f612609565b3480156109db57600080fd5b506102dc600480360360208110156109f257600080fd5b503573ffffffffffffffffffffffffffffffffffffffff1661260f565b348015610a1b57600080fd5b506102dc60048036036040811015610a3257600080fd5b5073ffffffffffffffffffffffffffffffffffffffff8135169060200135612805565b348015610a6157600080fd5b506102dc60048036036020811015610a7857600080fd5b503573ffffffffffffffffffffffffffffffffffffffff166128f7565b348015610aa157600080fd5b506104f06129e2565b348015610ab657600080fd5b506102dc60048036036020811015610acd57600080fd5b503573ffffffffffffffffffffffffffffffffffffffff166129fe565b348015610af657600080fd5b5061046f612ae9565b348015610b0b57600080fd5b506104f0612b5a565b348015610b2057600080fd5b5061046f612b76565b348015610b3557600080fd5b506102dc600480360360e0811015610b4c57600080fd5b5073ffffffffffffffffffffffffffffffffffffffff813581169160208101359091169060408101359060608101359060ff6080820135169060a08101359060c00135612be7565b348015610ba057600080fd5b5061046f60048036036040811015610bb757600080fd5b5073ffffffffffffffffffffffffffffffffffffffff81358116916020013516612eb3565b348015610be857600080fd5b506102dc60048036036020811015610bff57600080fd5b503573ffffffffffffffffffffffffffffffffffffffff16612ed0565b348015610c2857600080fd5b5061062e612fc8565b348015610c3d57600080fd5b506104f0613039565b348015610c5257600080fd5b506102dc613055565b601054600114610ccc57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601460248201527f4879706572426c61737456323a204c4f434b4544000000000000000000000000604482015290519081900360640190fd5b600060105584151580610cdf5750600084115b610d34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526028815260200180613dbb6028913960400191505060405180910390fd5b600080610d3f611368565b5091509150816dffffffffffffffffffffffffffff1687108015610d725750806dffffffffffffffffffffffffffff1686105b610dc7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526024815260200180613e606024913960400191505060405180910390fd5b600a54600b54600091829173ffffffffffffffffffffffffffffffffffffffff918216919081169089168214801590610e2c57508073ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff1614155b610e9757604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601860248201527f4879706572426c61737456323a20494e56414c49445f544f0000000000000000604482015290519081900360640190fd5b8a15610ea857610ea8828a8d61323b565b8915610eb957610eb9818a8c61323b565b8615610f9b578873ffffffffffffffffffffffffffffffffffffffff1663ffba5c07338d8d8c8c6040518663ffffffff1660e01b8152600401808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001858152602001848152602001806020018281038252848482818152602001925080828437600081840152601f19601f8201169050808301925050509650505050505050600060405180830381600087803b158015610f8257600080fd5b505af1158015610f96573d6000803e3d6000fd5b505050505b604080517f70a08231000000000000000000000000000000000000000000000000000000008152306004820152905173ffffffffffffffffffffffffffffffffffffffff8416916370a08231916024808301926020929190829003018186803b15801561100757600080fd5b505afa15801561101b573d6000803e3d6000fd5b505050506040513d602081101561103157600080fd5b5051604080517f70a08231000000000000000000000000000000000000000000000000000000008152306004820152905191955073ffffffffffffffffffffffffffffffffffffffff8316916370a0823191602480820192602092909190829003018186803b1580156110a357600080fd5b505afa1580156110b7573d6000803e3d6000fd5b505050506040513d60208110156110cd57600080fd5b5051925060009150506dffffffffffffffffffffffffffff85168a900383116110f757600061110d565b89856dffffffffffffffffffffffffffff160383035b9050600089856dffffffffffffffffffffffffffff16038311611131576000611147565b89856dffffffffffffffffffffffffffff160383035b905060008211806111585750600081115b6111ad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526027815260200180613de36027913960400191505060405180910390fd5b60006111e16111c384600363ffffffff61344116565b6111d5876103e863ffffffff61344116565b9063ffffffff6134c716565b905060006111f96111c384600363ffffffff61344116565b9050611231620f42406112256dffffffffffffffffffffffffffff8b8116908b1663ffffffff61344116565b9063ffffffff61344116565b611241838363ffffffff61344116565b10156112ae57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600f60248201527f4879706572426c61737456323a204b0000000000000000000000000000000000604482015290519081900360640190fd5b50506112bc84848888613539565b60408051838152602081018390528082018d9052606081018c9052905173ffffffffffffffffffffffffffffffffffffffff8b169133917fd78ad95fa46c994b6551d0da85fc275fe613ce37657fb8d5e3d130840159d8229181900360800190a350506001601055505050505050505050565b6040518060400160405280600d81526020017f4879706572426c6173742056320000000000000000000000000000000000000081525081565b600c546dffffffffffffffffffffffffffff808216926e0100000000000000000000000000008304909116917c0100000000000000000000000000000000000000000000000000000000900463ffffffff1690565b600654604080517fe12f3a61000000000000000000000000000000000000000000000000000000008152306004820152905160009273ffffffffffffffffffffffffffffffffffffffff169163e12f3a61916024808301926020929190829003018186803b15801561142e57600080fd5b505afa158015611442573d6000803e3d6000fd5b505050506040513d602081101561145857600080fd5b5051905090565b600061146c3384846137f5565b5060015b92915050565b600a5473ffffffffffffffffffffffffffffffffffffffff1681565b60005481565b60085473ffffffffffffffffffffffffffffffffffffffff163314611508576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526033815260200180613d886033913960400191505060405180910390fd5b600554604080517ff971966200000000000000000000000000000000000000000000000000000000815230600482015273ffffffffffffffffffffffffffffffffffffffff8581166024830152604482018590529151919092169163f97196629160648083019260209291908290030181600087803b15801561158a57600080fd5b505af115801561159e573d6000803e3d6000fd5b505050506040513d60208110156115b457600080fd5b50505050565b73ffffffffffffffffffffffffffffffffffffffff831660009081526002602090815260408083203384529091528120547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff146116845773ffffffffffffffffffffffffffffffffffffffff84166000908152600260209081526040808320338452909152902054611652908363ffffffff6134c716565b73ffffffffffffffffffffffffffffffffffffffff851660009081526002602090815260408083203384529091529020555b61168f848484613864565b5060019392505050565b60085473ffffffffffffffffffffffffffffffffffffffff163314611709576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526033815260200180613d886033913960400191505060405180910390fd5b600554604080517f954fa5ee00000000000000000000000000000000000000000000000000000000815230600482015273ffffffffffffffffffffffffffffffffffffffff84811660248301529151919092169163954fa5ee9160448083019260209291908290030181600087803b15801561178457600080fd5b505af1158015611798573d6000803e3d6000fd5b505050506040513d60208110156117ae57600080fd5b505050565b7f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c981565b601281565b60035481565b60095473ffffffffffffffffffffffffffffffffffffffff16331461186857604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601760248201527f4879706572426c61737456323a20464f5242494444454e000000000000000000604482015290519081900360640190fd5b600a805473ffffffffffffffffffffffffffffffffffffffff9384167fffffffffffffffffffffffff000000000000000000000000000000000000000091821617909155600b8054929093169116179055565b600554604080517fdde798a4000000000000000000000000000000000000000000000000000000008152306004820152905160009283928392839273ffffffffffffffffffffffffffffffffffffffff169163dde798a4916024808301926080929190829003018186803b15801561193257600080fd5b505afa158015611946573d6000803e3d6000fd5b505050506040513d608081101561195c57600080fd5b50805160208201516040830151606090930151919790965091945092509050565b600d5481565b600e5481565b60006010546001146119fc57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601460248201527f4879706572426c61737456323a204c4f434b4544000000000000000000000000604482015290519081900360640190fd5b6000601081905580611a0c611368565b50600a54604080517f70a08231000000000000000000000000000000000000000000000000000000008152306004820152905193955091935060009273ffffffffffffffffffffffffffffffffffffffff909116916370a08231916024808301926020929190829003018186803b158015611a8657600080fd5b505afa158015611a9a573d6000803e3d6000fd5b505050506040513d6020811015611ab057600080fd5b5051600b54604080517f70a08231000000000000000000000000000000000000000000000000000000008152306004820152905192935060009273ffffffffffffffffffffffffffffffffffffffff909216916370a0823191602480820192602092909190829003018186803b158015611b2957600080fd5b505afa158015611b3d573d6000803e3d6000fd5b505050506040513d6020811015611b5357600080fd5b505190506000611b79836dffffffffffffffffffffffffffff871663ffffffff6134c716565b90506000611b9d836dffffffffffffffffffffffffffff871663ffffffff6134c716565b90506000611bab8787613945565b60005490915080611be857611bd46103e86111d5611bcf878763ffffffff61344116565b613ad1565b9850611be360006103e8613b23565b611c45565b611c426dffffffffffffffffffffffffffff8916611c0c868463ffffffff61344116565b81611c1357fe5b046dffffffffffffffffffffffffffff8916611c35868563ffffffff61344116565b81611c3c57fe5b04613bd3565b98505b60008911611c9e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602b815260200180613e0a602b913960400191505060405180910390fd5b611ca88a8a613b23565b611cb486868a8a613539565b8115611cf657600c54611cf2906dffffffffffffffffffffffffffff808216916e01000000000000000000000000000090041663ffffffff61344116565b600f555b6040805185815260208101859052815133927f4c209b5fc8ad50758f13e2e1088ba56a560dff690a1c6fef26394f4c03821c4f928290030190a25050600160105550949695505050505050565b60016020526000908152604090205481565b600f5481565b60046020526000908152604090205481565b600080601054600114611de157604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601460248201527f4879706572426c61737456323a204c4f434b4544000000000000000000000000604482015290519081900360640190fd5b6000601081905580611df1611368565b50600a54600b54604080517f70a08231000000000000000000000000000000000000000000000000000000008152306004820152905194965092945073ffffffffffffffffffffffffffffffffffffffff9182169391169160009184916370a08231916024808301926020929190829003018186803b158015611e7357600080fd5b505afa158015611e87573d6000803e3d6000fd5b505050506040513d6020811015611e9d57600080fd5b5051604080517f70a08231000000000000000000000000000000000000000000000000000000008152306004820152905191925060009173ffffffffffffffffffffffffffffffffffffffff8516916370a08231916024808301926020929190829003018186803b158015611f1157600080fd5b505afa158015611f25573d6000803e3d6000fd5b505050506040513d6020811015611f3b57600080fd5b505130600090815260016020526040812054919250611f5a8888613945565b60005490915080611f71848763ffffffff61344116565b81611f7857fe5b049a5080611f8c848663ffffffff61344116565b81611f9357fe5b04995060008b118015611fa6575060008a115b611ffb576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602b815260200180613e35602b913960400191505060405180910390fd5b6120053084613beb565b612010878d8d61323b565b61201b868d8c61323b565b604080517f70a08231000000000000000000000000000000000000000000000000000000008152306004820152905173ffffffffffffffffffffffffffffffffffffffff8916916370a08231916024808301926020929190829003018186803b15801561208757600080fd5b505afa15801561209b573d6000803e3d6000fd5b505050506040513d60208110156120b157600080fd5b5051604080517f70a08231000000000000000000000000000000000000000000000000000000008152306004820152905191965073ffffffffffffffffffffffffffffffffffffffff8816916370a0823191602480820192602092909190829003018186803b15801561212357600080fd5b505afa158015612137573d6000803e3d6000fd5b505050506040513d602081101561214d57600080fd5b5051935061215d85858b8b613539565b811561219f57600c5461219b906dffffffffffffffffffffffffffff808216916e01000000000000000000000000000090041663ffffffff61344116565b600f555b604080518c8152602081018c9052815173ffffffffffffffffffffffffffffffffffffffff8f169233927fdccd412f0b1252819cb1fd330b93224ca42612892bb3f4f789976e6d81936496929081900390910190a35050505050505050506001601081905550915091565b6040518060400160405280600781526020017f485950452d56320000000000000000000000000000000000000000000000000081525081565b60085473ffffffffffffffffffffffffffffffffffffffff1633146122b3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526033815260200180613d886033913960400191505060405180910390fd5b600754604080517faad3ec9600000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff8581166004830152602482018590529151919092169163aad3ec969160448083019260209291908290030181600087803b15801561158a57600080fd5b60085473ffffffffffffffffffffffffffffffffffffffff16331461239f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526033815260200180613d886033913960400191505060405180910390fd5b600554604080517ffafce39e00000000000000000000000000000000000000000000000000000000815230600482015273ffffffffffffffffffffffffffffffffffffffff868116602483015260448201869052606482018590529151919092169163fafce39e9160848083019260209291908290030181600087803b15801561242857600080fd5b505af115801561243c573d6000803e3d6000fd5b505050506040513d602081101561245257600080fd5b5050505050565b60085473ffffffffffffffffffffffffffffffffffffffff1633146124c9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526033815260200180613d886033913960400191505060405180910390fd5b600654604080517faad3ec9600000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff8581166004830152602482018590529151919092169163aad3ec969160448083019260209291908290030181600087803b15801561158a57600080fd5b60085473ffffffffffffffffffffffffffffffffffffffff1633146125b5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526033815260200180613d886033913960400191505060405180910390fd5b600880547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b600061146c338484613864565b6103e881565b60105460011461268057604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601460248201527f4879706572426c61737456323a204c4f434b4544000000000000000000000000604482015290519081900360640190fd5b6000601055600a54600b54600c54604080517f70a08231000000000000000000000000000000000000000000000000000000008152306004820152905173ffffffffffffffffffffffffffffffffffffffff948516949093169261275c9285928792612757926dffffffffffffffffffffffffffff169185916370a0823191602480820192602092909190829003018186803b15801561271f57600080fd5b505afa158015612733573d6000803e3d6000fd5b505050506040513d602081101561274957600080fd5b50519063ffffffff6134c716565b61323b565b600c54604080517f70a0823100000000000000000000000000000000000000000000000000000000815230600482015290516127fb9284928792612757926e01000000000000000000000000000090046dffffffffffffffffffffffffffff169173ffffffffffffffffffffffffffffffffffffffff8616916370a0823191602480820192602092909190829003018186803b15801561271f57600080fd5b5050600160105550565b60085473ffffffffffffffffffffffffffffffffffffffff163314612875576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526033815260200180613d886033913960400191505060405180910390fd5b600554604080517f0951888f00000000000000000000000000000000000000000000000000000000815230600482015273ffffffffffffffffffffffffffffffffffffffff85811660248301526044820185905291519190921691630951888f9160648083019260209291908290030181600087803b15801561158a57600080fd5b60085473ffffffffffffffffffffffffffffffffffffffff163314612967576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526033815260200180613d886033913960400191505060405180910390fd5b600554604080517f860043b600000000000000000000000000000000000000000000000000000000815230600482015273ffffffffffffffffffffffffffffffffffffffff84811660248301529151919092169163860043b69160448083019260209291908290030181600087803b15801561178457600080fd5b60095473ffffffffffffffffffffffffffffffffffffffff1681565b60085473ffffffffffffffffffffffffffffffffffffffff163314612a6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526033815260200180613d886033913960400191505060405180910390fd5b600554604080517f662aa11d00000000000000000000000000000000000000000000000000000000815230600482015273ffffffffffffffffffffffffffffffffffffffff84811660248301529151919092169163662aa11d9160448083019260209291908290030181600087803b15801561178457600080fd5b600754604080517fe12f3a61000000000000000000000000000000000000000000000000000000008152306004820152905160009273ffffffffffffffffffffffffffffffffffffffff169163e12f3a61916024808301926020929190829003018186803b15801561142e57600080fd5b600b5473ffffffffffffffffffffffffffffffffffffffff1681565b600554604080517fec3278e8000000000000000000000000000000000000000000000000000000008152306004820152905160009273ffffffffffffffffffffffffffffffffffffffff169163ec3278e8916024808301926020929190829003018186803b15801561142e57600080fd5b42841015612c5657604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601560248201527f4879706572426c61737456323a20455850495245440000000000000000000000604482015290519081900360640190fd5b60035473ffffffffffffffffffffffffffffffffffffffff80891660008181526004602090815260408083208054600180820190925582517f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c98186015280840196909652958d166060860152608085018c905260a085019590955260c08085018b90528151808603909101815260e0850182528051908301207f19010000000000000000000000000000000000000000000000000000000000006101008601526101028501969096526101228085019690965280518085039096018652610142840180825286519683019690962095839052610162840180825286905260ff89166101828501526101a284018890526101c28401879052519193926101e2808201937fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe081019281900390910190855afa158015612db7573d6000803e3d6000fd5b50506040517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0015191505073ffffffffffffffffffffffffffffffffffffffff811615801590612e3257508873ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16145b612e9d57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f4879706572426c61737456323a20494e56414c49445f5349474e415455524500604482015290519081900360640190fd5b612ea88989896137f5565b505050505050505050565b600260209081526000928352604080842090915290825290205481565b60085473ffffffffffffffffffffffffffffffffffffffff163314612f40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526033815260200180613d886033913960400191505060405180910390fd5b600554604080517feb86469800000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff84811660048301529151919092169163eb86469891602480830192600092919082900301818387803b158015612fb457600080fd5b505af1158015612452573d6000803e3d6000fd5b600554604080517ffd8c4b9d000000000000000000000000000000000000000000000000000000008152306004820152905160009273ffffffffffffffffffffffffffffffffffffffff169163fd8c4b9d916024808301926020929190829003018186803b15801561142e57600080fd5b60085473ffffffffffffffffffffffffffffffffffffffff1681565b6010546001146130c657604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601460248201527f4879706572426c61737456323a204c4f434b4544000000000000000000000000604482015290519081900360640190fd5b6000601055600a54604080517f70a0823100000000000000000000000000000000000000000000000000000000815230600482015290516132349273ffffffffffffffffffffffffffffffffffffffff16916370a08231916024808301926020929190829003018186803b15801561313d57600080fd5b505afa158015613151573d6000803e3d6000fd5b505050506040513d602081101561316757600080fd5b5051600b54604080517f70a08231000000000000000000000000000000000000000000000000000000008152306004820152905173ffffffffffffffffffffffffffffffffffffffff909216916370a0823191602480820192602092909190829003018186803b1580156131da57600080fd5b505afa1580156131ee573d6000803e3d6000fd5b505050506040513d602081101561320457600080fd5b5051600c546dffffffffffffffffffffffffffff808216916e010000000000000000000000000000900416613539565b6001601055565b604080518082018252601981527f7472616e7366657228616464726573732c75696e743235362900000000000000602091820152815173ffffffffffffffffffffffffffffffffffffffff85811660248301526044808301869052845180840390910181526064909201845291810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167fa9059cbb000000000000000000000000000000000000000000000000000000001781529251815160009460609489169392918291908083835b6020831061334157805182527fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe09092019160209182019101613304565b6001836020036101000a0380198251168184511680821785525050505050509050019150506000604051808303816000865af19150503d80600081146133a3576040519150601f19603f3d011682016040523d82523d6000602084013e6133a8565b606091505b50915091508180156133d65750805115806133d657508080602001905160208110156133d357600080fd5b50515b61245257604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f4879706572426c61737456323a205452414e534645525f4641494c4544000000604482015290519081900360640190fd5b600081158061345c5750508082028282828161345957fe5b04145b61147057604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601460248201527f64732d6d6174682d6d756c2d6f766572666c6f77000000000000000000000000604482015290519081900360640190fd5b8082038281111561147057604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601560248201527f64732d6d6174682d7375622d756e646572666c6f770000000000000000000000604482015290519081900360640190fd5b6dffffffffffffffffffffffffffff841180159061356557506dffffffffffffffffffffffffffff8311155b6135d057604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601660248201527f4879706572426c61737456323a204f564552464c4f5700000000000000000000604482015290519081900360640190fd5b600c5463ffffffff428116917c01000000000000000000000000000000000000000000000000000000009004811682039081161580159061362057506dffffffffffffffffffffffffffff841615155b801561363b57506dffffffffffffffffffffffffffff831615155b156136eb578063ffffffff1661367e8561365486613cb0565b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff169063ffffffff613cd416565b600d80547bffffffffffffffffffffffffffffffffffffffffffffffffffffffff929092169290920201905563ffffffff81166136be8461365487613cb0565b600e80547bffffffffffffffffffffffffffffffffffffffffffffffffffffffff92909216929092020190555b600c80547fffffffffffffffffffffffffffffffffffff0000000000000000000000000000166dffffffffffffffffffffffffffff888116919091177fffffffff0000000000000000000000000000ffffffffffffffffffffffffffff166e0100000000000000000000000000008883168102919091177bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167c010000000000000000000000000000000000000000000000000000000063ffffffff871602179283905560408051848416815291909304909116602082015281517f1c411e9a96e071241c2f21f7726b17ae89e3cab4c78be50e062b03a9fffbbad1929181900390910190a1505050505050565b73ffffffffffffffffffffffffffffffffffffffff808416600081815260026020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b73ffffffffffffffffffffffffffffffffffffffff831660009081526001602052604090205461389a908263ffffffff6134c716565b73ffffffffffffffffffffffffffffffffffffffff80851660009081526001602052604080822093909355908416815220546138dc908263ffffffff613d1516565b73ffffffffffffffffffffffffffffffffffffffff80841660008181526001602090815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b600080600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663017e7e586040518163ffffffff1660e01b815260040160206040518083038186803b1580156139b057600080fd5b505afa1580156139c4573d6000803e3d6000fd5b505050506040513d60208110156139da57600080fd5b5051600f5473ffffffffffffffffffffffffffffffffffffffff8216158015945091925090613abd578015613ab8576000613a31611bcf6dffffffffffffffffffffffffffff88811690881663ffffffff61344116565b90506000613a3e83613ad1565b905080821115613ab5576000613a6c613a5d848463ffffffff6134c716565b6000549063ffffffff61344116565b90506000613a9183613a8586600563ffffffff61344116565b9063ffffffff613d1516565b90506000818381613a9e57fe5b0490508015613ab157613ab18782613b23565b5050505b50505b613ac9565b8015613ac9576000600f555b505092915050565b60006003821115613b14575080600160028204015b81811015613b0e57809150600281828581613afd57fe5b040181613b0657fe5b049050613ae6565b50613b1e565b8115613b1e575060015b919050565b600054613b36908263ffffffff613d1516565b600090815573ffffffffffffffffffffffffffffffffffffffff8316815260016020526040902054613b6e908263ffffffff613d1516565b73ffffffffffffffffffffffffffffffffffffffff831660008181526001602090815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b6000818310613be25781613be4565b825b9392505050565b73ffffffffffffffffffffffffffffffffffffffff8216600090815260016020526040902054613c21908263ffffffff6134c716565b73ffffffffffffffffffffffffffffffffffffffff831660009081526001602052604081209190915554613c5b908263ffffffff6134c716565b600090815560408051838152905173ffffffffffffffffffffffffffffffffffffffff8516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef919081900360200190a35050565b6dffffffffffffffffffffffffffff166e0100000000000000000000000000000290565b60006dffffffffffffffffffffffffffff82167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff841681613d0d57fe5b049392505050565b8082018281101561147057604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601460248201527f64732d6d6174682d6164642d6f766572666c6f77000000000000000000000000604482015290519081900360640190fdfe4f6e6c7920626c61737420636f6e7472616374206f776e65722063616e206d616e61676520626c6173742066656174757265734879706572426c61737456323a20494e53554646494349454e545f4f55545055545f414d4f554e544879706572426c61737456323a20494e53554646494349454e545f494e5055545f414d4f554e544879706572426c61737456323a20494e53554646494349454e545f4c49515549444954595f4d494e5445444879706572426c61737456323a20494e53554646494349454e545f4c49515549444954595f4255524e45444879706572426c61737456323a20494e53554646494349454e545f4c4951554944495459a265627a7a7231582006068345b46eae497229f7412094098ca6d2f41fd8156db82d1f02c0bd9617a464736f6c63430005100032
Deployed Bytecode Sourcemap
748:10003:11:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8037:2082;;8:9:-1;5:2;;;30:1;27;20:12;5:2;8037:2082:11;;;;;;13:3:-1;8;5:12;2:2;;;30:1;27;20:12;2:2;8037:2082:11;;;;;;;;;;;;;;;;;;;;;;;;;;21:11:-1;5:28;;2:2;;;46:1;43;36:12;2:2;8037:2082:11;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;8037:2082:11;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;39:11;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;-1:-1;8037:2082:11;;-1:-1:-1;8037:2082:11;-1:-1:-1;8037:2082:11;:::i;314:45:10:-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;314:45:10;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:100:-1;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;314:45:10;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1796:231:11;;8:9:-1;5:2;;;30:1;27;20:12;5:2;1796:231:11;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6300:140:0;;8:9:-1;5:2;;;30:1;27;20:12;5:2;6300:140:0;;;:::i;:::-;;;;;;;;;;;;;;;;2365:147:10;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2365:147:10;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;2365:147:10;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;1082:21:11;;8:9:-1;5:2;;;30:1;27;20:12;5:2;1082:21:11;;;:::i;:::-;;;;;;;;;;;;;;;;;;;456:24:10;;8:9:-1;5:2;;;30:1;27;20:12;5:2;456:24:10;;;:::i;6945:159:0:-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;6945:159:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;6945:159:0;;;;;;;;;:::i;2667:301:10:-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2667:301:10;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;2667:301:10;;;;;;;;;;;;;;;;;;:::i;7604:137:0:-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;7604:137:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;7604:137:0;;;;:::i;748:108:10:-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;748:108:10;;;:::i;414:35::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;414:35:10;;;:::i;:::-;;;;;;;;;;;;;;;;;;;605:31;;8:9:-1;5:2;;;30:1;27;20:12;5:2;605:31:10;;;:::i;2898:213:11:-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2898:213:11;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;2898:213:11;;;;;;;;;;;:::i;6675:212:0:-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;6675:212:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1433:32:11;;8:9:-1;5:2;;;30:1;27;20:12;5:2;1433:32:11;;;:::i;1472:::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;1472:32:11;;;:::i;5101:1243::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;5101:1243:11;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;5101:1243:11;;;;:::i;487:41:10:-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;487:41:10;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;487:41:10;;;;:::i;1511:17:11:-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;1511:17:11;;;:::i;863:38:10:-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;863:38:10;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;863:38:10;;;;:::i;6456:1469:11:-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;6456:1469:11;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;6456:1469:11;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;366:41:10;;8:9:-1;5:2;;;30:1;27;20:12;5:2;366:41:10;;;:::i;7258:141:0:-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;7258:141:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;7258:141:0;;;;;;;;;:::i;8105:221::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;8105:221:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;8105:221:0;;;;;;;;;;;;;;:::i;7407:141::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;7407:141:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;7407:141:0;;;;;;;;;:::i;4128:109::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;4128:109:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;4128:109:0;;;;:::i;2520:139:10:-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2520:139:10;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;2520:139:10;;;;;;;;;:::i;903:46:11:-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;903:46:11;;;:::i;10168:334::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;10168:334:11;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;10168:334:11;;;;:::i;7894:203:0:-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;7894:203:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;7894:203:0;;;;;;;;;:::i;7109:141::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;7109:141:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;7109:141:0;;;;:::i;1053:22:11:-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;1053:22:11;;;:::i;7749:137:0:-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;7749:137:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;7749:137:0;;;;:::i;6152:140::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;6152:140:0;;;:::i;1110:21:11:-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;1110:21:11;;;:::i;5854:138:0:-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;5854:138:0;;;:::i;2976:680:10:-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2976:680:10;;;;;;13:3:-1;8;5:12;2:2;;;30:1;27;20:12;2:2;-1:-1;2976:680:10;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;535:61::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;535:61:10;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;535:61:10;;;;;;;;;;;:::i;4476:120:0:-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;4476:120:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;4476:120:0;;;;:::i;6000:144::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;6000:144:0;;;:::i;3530:25::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;3530:25:0;;;:::i;10551:158:11:-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;10551:158:11;;;:::i;8037:2082::-;1684:8;;1696:1;1684:13;1676:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1744:1;1733:8;:12;8151:14;;;;:32;;;8182:1;8169:10;:14;8151:32;8143:85;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8240:17;8259;8281:13;:11;:13::i;:::-;8239:55;;;;;8341:9;8328:22;;:10;:22;:48;;;;;8367:9;8354:22;;:10;:22;8328:48;8320:97;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8562:6;;8597;;8430:13;;;;8562:6;;;;;8597;;;;8622:13;;;;;;;:30;;;8645:7;8639:13;;:2;:13;;;;8622:30;8614:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8696:14;;8692:58;;8712:38;8726:7;8735:2;8739:10;8712:13;:38::i;:::-;8799:14;;8795:58;;8815:38;8829:7;8838:2;8842:10;8815:13;:38::i;:::-;8902:15;;8898:103;;8939:2;8919:40;;;8960:10;8972;8984;8996:4;;8919:82;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;93:3;85:6;81:16;74:27;137:4;133:9;126:4;121:3;117:14;113:30;106:37;;169:3;161:6;157:16;147:26;;8919:82:11;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;8919:82:11;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;8919:82:11;;;;8898:103;9023:40;;;;;;9057:4;9023:40;;;;;;:25;;;;;;:40;;;;;;;;;;;;;;:25;:40;;;5:2:-1;;;;30:1;27;20:12;5:2;9023:40:11;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;9023:40:11;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;9023:40:11;9085;;;;;;9119:4;9085:40;;;;;;9023;;-1:-1:-1;9085:25:11;;;;;;:40;;;;;9023;;9085;;;;;;;;:25;:40;;;5:2:-1;;;;30:1;27;20:12;5:2;9085:40:11;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;9085:40:11;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;9085:40:11;;-1:-1:-1;9147:14:11;;-1:-1:-1;;9175:22:11;;;;;;9164:33;;:75;;9238:1;9164:75;;;9224:10;9212:9;:22;;;9200:8;:35;9164:75;9147:92;;9250:14;9290:10;9278:9;:22;;;9267:8;:33;:75;;9341:1;9267:75;;;9327:10;9315:9;:22;;;9303:8;:35;9267:75;9250:92;;9373:1;9361:9;:13;:30;;;;9390:1;9378:9;:13;9361:30;9353:82;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9521:21;9545:40;9568:16;:9;9582:1;9568:16;:13;:16;:::i;:::-;9545:18;:8;9558:4;9545:18;:12;:18;:::i;:::-;:22;:40;:22;:40;:::i;:::-;9521:64;-1:-1:-1;9596:21:11;9620:40;9643:16;:9;9657:1;9643:16;:13;:16;:::i;9620:40::-;9596:64;-1:-1:-1;9893:43:11;9928:7;9893:30;;:15;;;;:30;;;:19;:30;:::i;:::-;:34;:43;:34;:43;:::i;:::-;9851:38;:16;9872;9851:38;:20;:38;:::i;:::-;:85;;9843:113;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1756:1;;9980:49;9988:8;9998;10008:9;10019;9980:7;:49::i;:::-;10045:66;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10050:10;;10045:66;;;;;;;;;-1:-1:-1;;1779:1:11;1768:8;:12;-1:-1:-1;;;;;;;;;8037:2082:11:o;314:45:10:-;;;;;;;;;;;;;;;;;;;:::o;1796:231:11:-;1929:8;;;;;;;1960;;;;;;;2001:18;;;;;;1796:231::o;6300:140:0:-;6384:14;;:48;;;;;;6426:4;6384:48;;;;;;6357:7;;6384:14;;;:33;;:48;;;;;;;;;;;;;;:14;:48;;;5:2:-1;;;;30:1;27;20:12;5:2;6384:48:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;6384:48:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;6384:48:0;;-1:-1:-1;6300:140:0;:::o;2365:147:10:-;2429:4;2446:36;2455:10;2467:7;2476:5;2446:8;:36::i;:::-;-1:-1:-1;2500:4:10;2365:147;;;;;:::o;1082:21:11:-;;;;;;:::o;456:24:10:-;;;;:::o;6945:159:0:-;3623:10;;;;3609;:24;3601:88;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7035:16;;:61;;;;;;7071:4;7035:61;;;;:16;:61;;;;;;;;;;;;;;;:16;;;;;:27;;:61;;;;;;;;;;;;;;:16;;:61;;;5:2:-1;;;;30:1;27;20:12;5:2;7035:61:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;7035:61:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;6945:159:0:o;2667:301:10:-;2766:15;;;2745:4;2766:15;;;:9;:15;;;;;;;;2782:10;2766:27;;;;;;;;2802:2;2766:39;2762:140;;2852:15;;;;;;;:9;:15;;;;;;;;2868:10;2852:27;;;;;;;;:38;;2884:5;2852:38;:31;:38;:::i;:::-;2822:15;;;;;;;:9;:15;;;;;;;;2838:10;2822:27;;;;;;;:68;2762:140;2912:26;2922:4;2928:2;2932:5;2912:9;:26::i;:::-;-1:-1:-1;2956:4:10;2667:301;;;;;:::o;7604:137:0:-;3623:10;;;;3609;:24;3601:88;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7679:16;;:54;;;;;;7716:4;7679:54;;;;:16;:54;;;;;;;;;:16;;;;;:28;;:54;;;;;;;;;;;;;;:16;;:54;;;5:2:-1;;;;30:1;27;20:12;5:2;7679:54:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;7679:54:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;7604:137:0:o;748:108:10:-;790:66;748:108;:::o;414:35::-;447:2;414:35;:::o;605:31::-;;;;:::o;2898:213:11:-;2994:7;;;;2980:10;:21;2972:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3060:6;:16;;;;;;;;;;;;;;3087:6;:16;;;;;;;;;;;2898:213::o;6675:212:0:-;6834:16;;:45;;;;;;6873:4;6834:45;;;;;;6723:20;;;;;;;;6834:16;;;:30;;:45;;;;;;;;;;;;;;:16;:45;;;5:2:-1;;;;30:1;27;20:12;5:2;6834:45:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;6834:45:0;;;;;;;13:3:-1;8;5:12;2:2;;;30:1;27;20:12;2:2;-1:-1;6834:45:0;;;;;;;;;;;;;;;;;;;-1:-1:-1;6834:45:0;;-1:-1:-1;6834:45:0;-1:-1:-1;6675:212:0;-1:-1:-1;6675:212:0:o;1433:32:11:-;;;;:::o;1472:::-;;;;:::o;5101:1243::-;5150:14;1684:8;;1696:1;1684:13;1676:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1744:1;1733:8;:12;;;1744:1;5219:13;:11;:13::i;:::-;-1:-1:-1;5281:6:11;;5274:39;;;;;;5307:4;5274:39;;;;;;5177:55;;-1:-1:-1;5177:55:11;;-1:-1:-1;5258:13:11;;5281:6;;;;;5274:24;;:39;;;;;;;;;;;;;;5281:6;5274:39;;;5:2:-1;;;;30:1;27;20:12;5:2;5274:39:11;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;5274:39:11;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;5274:39:11;5347:6;;5340:39;;;;;;5373:4;5340:39;;;;;;5274;;-1:-1:-1;5324:13:11;;5347:6;;;;;5340:24;;:39;;;;;5274;;5340;;;;;;;;5347:6;5340:39;;;5:2:-1;;;;30:1;27;20:12;5:2;5340:39:11;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;5340:39:11;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;5340:39:11;;-1:-1:-1;5390:12:11;5405:23;:8;:23;;;;:12;:23;:::i;:::-;5390:38;-1:-1:-1;5439:12:11;5454:23;:8;:23;;;;:12;:23;:::i;:::-;5439:38;;5490:10;5503:30;5512:9;5523;5503:8;:30::i;:::-;5544:17;5564:11;5490:43;;-1:-1:-1;5668:17:11;5664:352;;5714:54;944:5;5714:31;5724:20;:7;5736;5724:20;:11;:20;:::i;:::-;5714:9;:31::i;:54::-;5702:66;;5782:36;5796:1;944:5;5782;:36::i;:::-;5664:352;;;5918:86;5927:37;;;:25;:7;5939:12;5927:25;:11;:25;:::i;:::-;:37;;;;;;5966;;;:25;:7;5978:12;5966:25;:11;:25;:::i;:::-;:37;;;;;;5918:8;:86::i;:::-;5906:98;;5664:352;6046:1;6034:9;:13;6026:69;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6106:20;6112:2;6116:9;6106:5;:20::i;:::-;6139:49;6147:8;6157;6167:9;6178;6139:7;:49::i;:::-;6203:5;6199:47;;;6237:8;;6218:28;;6237:8;6223;;;;6237;;;;6218:28;:18;:28;:::i;:::-;6210:5;:36;6199:47;6302:34;;;;;;;;;;;;;;6307:10;;6302:34;;;;;;;;-1:-1:-1;;1779:1:11;1768:8;:12;-1:-1:-1;5101:1243:11;;;-1:-1:-1;;;;;;5101:1243:11:o;487:41:10:-;;;;;;;;;;;;;:::o;1511:17:11:-;;;;:::o;863:38:10:-;;;;;;;;;;;;;:::o;6456:1469:11:-;6505:12;6519;1684:8;;1696:1;1684:13;1676:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1744:1;1733:8;:12;;;1744:1;6586:13;:11;:13::i;:::-;-1:-1:-1;6643:6:11;;6724;;6803:40;;;;;;6837:4;6803:40;;;;;;6544:55;;-1:-1:-1;6544:55:11;;-1:-1:-1;6643:6:11;;;;;6724;;;6625:15;;6643:6;;6803:25;;:40;;;;;;;;;;;;;;6643:6;6803:40;;;5:2:-1;;;;30:1;27;20:12;5:2;6803:40:11;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;6803:40:11;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;6803:40:11;6870;;;;;;6904:4;6870:40;;;;;;6803;;-1:-1:-1;6854:13:11;;6870:25;;;;;;:40;;;;;6803;;6870;;;;;;;:25;:40;;;5:2:-1;;;;30:1;27;20:12;5:2;6870:40:11;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;6870:40:11;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;6870:40:11;6956:4;6921:14;6938:24;;;:9;6870:40;6938:24;;;;;6870:40;;-1:-1:-1;6988:30:11;6997:9;7008;6988:8;:30::i;:::-;7029:17;7049:11;6975:43;;-1:-1:-1;7049:11:11;7159:23;:9;7173:8;7159:23;:13;:23;:::i;:::-;:38;;;;;;;-1:-1:-1;7292:12:11;7266:23;:9;7280:8;7266:23;:13;:23;:::i;:::-;:38;;;;;;7256:48;;7381:1;7371:7;:11;:26;;;;;7396:1;7386:7;:11;7371:26;7363:82;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7456:31;7470:4;7477:9;7456:5;:31::i;:::-;7498:35;7512:7;7521:2;7525:7;7498:13;:35::i;:::-;7544;7558:7;7567:2;7571:7;7544:13;:35::i;:::-;7601:40;;;;;;7635:4;7601:40;;;;;;:25;;;;;;:40;;;;;;;;;;;;;;:25;:40;;;5:2:-1;;;;30:1;27;20:12;5:2;7601:40:11;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;7601:40:11;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;7601:40:11;7663;;;;;;7697:4;7663:40;;;;;;7601;;-1:-1:-1;7663:25:11;;;;;;:40;;;;;7601;;7663;;;;;;;;:25;:40;;;5:2:-1;;;;30:1;27;20:12;5:2;7663:40:11;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;7663:40:11;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;7663:40:11;;-1:-1:-1;7716:49:11;7724:8;7663:40;7744:9;7755;7716:7;:49::i;:::-;7780:5;7776:47;;;7814:8;;7795:28;;7814:8;7800;;;;7814;;;;7795:28;:18;:28;:::i;:::-;7787:5;:36;7776:47;7879:38;;;;;;;;;;;;;;;;;;7884:10;;7879:38;;;;;;;;;;;1756:1;;;;;;;;;1779;1768:8;:12;;;;6456:1469;;;:::o;366:41:10:-;;;;;;;;;;;;;;;;;;;:::o;7258:141:0:-;3623:10;;;;3609;:24;3601:88;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7352:14;;:39;;;;;;:14;:39;;;;;;;;;;;;;;;:14;;;;;:20;;:39;;;;;;;;;;;;;;:14;;:39;;;5:2:-1;;;;30:1;27;20:12;8105:221:0;3623:10;;;;3609;:24;3601:88;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8230:16;;:88;;;;;;8264:4;8230:88;;;;:16;:88;;;;;;;;;;;;;;;;;;;;;:16;;;;;:25;;:88;;;;;;;;;;;;;;:16;;:88;;;5:2:-1;;;;30:1;27;20:12;5:2;8230:88:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;8230:88:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;8105:221:0:o;7407:141::-;3623:10;;;;3609;:24;3601:88;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7501:14;;:39;;;;;;:14;:39;;;;;;;;;;;;;;;:14;;;;;:20;;:39;;;;;;;;;;;;;;:14;;:39;;;5:2:-1;;;;30:1;27;20:12;4128:109:0;3623:10;;;;3609;:24;3601:88;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4205:10;:24;;;;;;;;;;;;;;;4128:109::o;2520:139:10:-;2580:4;2597:32;2607:10;2619:2;2623:5;2597:9;:32::i;903:46:11:-;944:5;903:46;:::o;10168:334::-;1684:8;;1696:1;1684:13;1676:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1744:1;1733:8;:12;10237:6;;10287;;10391:8;;10346:40;;;;;;10380:4;10346:40;;;;;;10237:6;;;;;10287;;;;10319:82;;10237:6;;10342:2;;10346:54;;10391:8;;;10237:6;;10346:25;;:40;;;;;;;;;;;;;;;10237:6;10346:40;;;5:2:-1;;;;30:1;27;20:12;5:2;10346:40:11;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;10346:40:11;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;10346:40:11;;:54;:44;:54;:::i;:::-;10319:13;:82::i;:::-;10484:8;;10439:40;;;;;;10473:4;10439:40;;;;;;10412:82;;10426:7;;10435:2;;10439:54;;10484:8;;;;;;10439:25;;;;;;:40;;;;;;;;;;;;;;;:25;:40;;;5:2:-1;;;;30:1;27;20:12;10412:82:11;-1:-1:-1;;1779:1:11;1768:8;:12;-1:-1:-1;10168:334:11:o;7894:203:0:-;3623:10;;;;3609;:24;3601:88;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8006:16;;:83;;;;;;8054:4;8006:83;;;;:16;:83;;;;;;;;;;;;;;;:16;;;;;:39;;:83;;;;;;;;;;;;;;:16;;:83;;;5:2:-1;;;;30:1;27;20:12;7109:141:0;3623:10;;;;3609;:24;3601:88;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7186:16;;:56;;;;;;7225:4;7186:56;;;;:16;:56;;;;;;;;;:16;;;;;:30;;:56;;;;;;;;;;;;;;:16;;:56;;;5:2:-1;;;;30:1;27;20:12;1053:22:11;;;;;;:::o;7749:137:0:-;3623:10;;;;3609;:24;3601:88;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7824:16;;:54;;;;;;7861:4;7824:54;;;;:16;:54;;;;;;;;;:16;;;;;:28;;:54;;;;;;;;;;;;;;:16;;:54;;;5:2:-1;;;;30:1;27;20:12;6152:140:0;6236:14;;:48;;;;;;6278:4;6236:48;;;;;;6209:7;;6236:14;;;:33;;:48;;;;;;;;;;;;;;:14;:48;;;5:2:-1;;;;30:1;27;20:12;1110:21:11;;;;;;:::o;5854:138:0:-;5934:16;;:50;;;;;;5978:4;5934:50;;;;;;5907:7;;5934:16;;;:35;;:50;;;;;;;;;;;;;;:16;:50;;;5:2:-1;;;;30:1;27;20:12;2976:680:10;3122:15;3110:8;:27;;3102:61;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3279:16;;3375:13;;;;3174:14;3375:13;;;:6;:13;;;;;;;;:15;;;;;;;;;3324:77;;790:66;3324:77;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26:21:-1;;;22:32;;;6:49;;3324:77:10;;;;;3314:88;;;;;;3215:202;;;;;;;;;;;;;;;;;;;;;;26:21:-1;;;22:32;;;6:49;;3215:202:10;;;;;;3191:237;;;;;;;;;3466:26;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3174:14;;3375:15;3466:26;;;;;-1:-1:-1;3466:26:10;;;;;;;;;;3375:15;3466:26;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;-1:-1;;3466:26:10;;;;;;-1:-1:-1;;3511:30:10;;;;;;;:59;;;3565:5;3545:25;;:16;:25;;;3511:59;3503:103;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3617:31;3626:5;3633:7;3642:5;3617:8;:31::i;:::-;2976:680;;;;;;;;;:::o;535:61::-;;;;;;;;;;;;;;;;;;;;;;;;:::o;4476:120:0:-;3623:10;;;;3609;:24;3601:88;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4549:16;;:39;;;;;;:16;:39;;;;;;;;;:16;;;;;:34;;:39;;;;;:16;;:39;;;;;;;:16;;:39;;;5:2:-1;;;;30:1;27;20:12;5:2;4549:39:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;6000:144:0;6082:16;;:54;;;;;;6130:4;6082:54;;;;;;6057:5;;6082:16;;;:39;;:54;;;;;;;;;;;;;;:16;:54;;;5:2:-1;;;;30:1;27;20:12;3530:25:0;;;;;;:::o;10551:158:11:-;1684:8;;1696:1;1684:13;1676:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1744:1;1733:8;:12;10607:6;;10600:39;;;;;;10633:4;10600:39;;;;;;10592:109;;10607:6;;;10600:24;;:39;;;;;;;;;;;;;;10607:6;10600:39;;;5:2:-1;;;;30:1;27;20:12;5:2;10600:39:11;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;10600:39:11;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;10600:39:11;10648:6;;10641:39;;;;;;10674:4;10641:39;;;;;;10648:6;;;;;10641:24;;:39;;;;;10600;;10641;;;;;;;;10648:6;10641:39;;;5:2:-1;;;;30:1;27;20:12;5:2;10641:39:11;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;10641:39:11;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;10641:39:11;10682:8;;;;;;;10692;;;;10592:7;:109::i;:::-;1779:1;1768:8;:12;10551:158::o;2035:290::-;1008:34;;;;;;;;;;;;;;;;;2163:43;;2152:10;2163:43;;;;;;;;;;;;;;;;26:21:-1;;;22:32;;;6:49;;2163:43:11;;;;;;25:18:-1;;;61:17;;2163:43:11;182:15:-1;2163:43:11;179:29:-1;160:49;;2152:55:11;;;;2117:12;;2131:17;;2152:10;;;2163:43;2152:55;;;25:18:-1;2152:55:11;;25:18:-1;36:153;66:2;61:3;58:11;36:153;;176:10;;164:23;;139:12;;;;;98:2;89:12;;;;114;36:153;;;274:1;267:3;263:2;259:12;254:3;250:22;246:30;315:4;311:9;305:3;299:10;295:26;356:4;350:3;344:10;340:21;389:7;380;377:20;372:3;365:33;3:399;;;2152:55:11;;;;;;;;;;;;;;;;;;;;;;;;14:1:-1;21;16:31;;;;75:4;69:11;64:16;;144:4;140:9;133:4;115:16;111:27;107:43;104:1;100:51;94:4;87:65;169:16;166:1;159:27;225:16;222:1;215:4;212:1;208:12;193:49;7:242;;16:31;36:4;31:9;;7:242;;2116:91:11;;;;2226:7;:57;;;;-1:-1:-1;2238:11:11;;:16;;:44;;;2269:4;2258:24;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;2258:24:11;2238:44;2218:99;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;320:142:4;372:6;399;;;:30;;-1:-1:-1;;414:5:4;;;428:1;423;414:5;423:1;409:15;;;;;:20;399:30;391:63;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;183:129;267:5;;;262:16;;;;254:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3196:863:11;3308:23;;;;;;:50;;-1:-1:-1;3335:23:11;;;;3308:50;3300:85;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3500:18;;3427:23;:15;:23;;;3500:18;;;;;3483:35;;;3556:15;;;;;;:33;;-1:-1:-1;3575:14:11;;;;;3556:33;:51;;;;-1:-1:-1;3593:14:11;;;;;3556:51;3552:336;;;3762:11;3709:64;;3714:44;3748:9;3714:27;3731:9;3714:16;:27::i;:::-;:33;;;:44;:33;:44;:::i;:::-;3685:20;:88;;3709:50;;;;;:64;;;;3685:88;;;3812:64;;;3817:44;3851:9;3817:27;3834:9;3817:16;:27::i;:44::-;3788:20;:88;;3812:50;;;;;:64;;;;3788:88;;;3552:336;3898:8;:28;;;;;;;;;;;;3937;;;;;;;;;;;;3976:35;;;;;;;;;;;;4027:24;;;4032:8;;;4027:24;;4042:8;;;;;;;4027:24;;;;;;;;;;;;;;;;;3196:863;;;;;;:::o;1960:169:10:-;2041:16;;;;;;;;:9;:16;;;;;;;;:25;;;;;;;;;;;;;:33;;;2090:31;;;;;;;;;;;;;;;;;1960:169;;;:::o;2137:220::-;2231:15;;;;;;;:9;:15;;;;;;:26;;2251:5;2231:26;:19;:26;:::i;:::-;2213:15;;;;;;;;:9;:15;;;;;;:44;;;;2284:13;;;;;;;:24;;2302:5;2284:24;:17;:24;:::i;:::-;2268:13;;;;;;;;:9;:13;;;;;;;;;:40;;;;2324:25;;;;;;;2268:13;;2324:25;;;;;;;;;;;;;2137:220;;;:::o;4149:840:11:-;4222:10;4245:13;4282:7;;;;;;;;;;;4261:35;;;:37;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;4261:37:11;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;4261:37:11;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;4261:37:11;4361:5;;4317:19;;;;;;;-1:-1:-1;4261:37:11;;-1:-1:-1;4361:5:11;4392:590;;4422:11;;4418:494;;4454:10;4467:41;4477:30;;:15;;;;:30;;;:19;:30;:::i;4467:41::-;4454:54;;4527:14;4544:17;4554:6;4544:9;:17::i;:::-;4527:34;;4592:9;4584:5;:17;4580:317;;;4626:14;4643:37;4659:20;:5;4669:9;4659:20;:9;:20;:::i;:::-;4643:11;;;:37;:15;:37;:::i;:::-;4626:54;-1:-1:-1;4703:16:11;4722:27;4739:9;4722:12;:5;4732:1;4722:12;:9;:12;:::i;:::-;:16;:27;:16;:27;:::i;:::-;4703:46;;4772:14;4801:11;4789:9;:23;;;;;;;-1:-1:-1;4839:13:11;;4835:42;;4854:23;4860:5;4867:9;4854:5;:23::i;:::-;4580:317;;;;4418:494;;;4392:590;;;4933:11;;4929:53;;4969:1;4961:5;:9;4929:53;4149:840;;;;;;:::o;257:303:3:-;302:6;329:1;325;:5;321:232;;;-1:-1:-1;351:1:3;384;380;376:5;;:9;400:92;411:1;407;:5;400:92;;;437:1;433:5;;475:1;470;466;462;:5;;;;;;:9;461:15;;;;;;457:19;;400:92;;;321:232;;;;513:6;;509:44;;-1:-1:-1;540:1:3;509:44;257:303;;;:::o;1534:201:10:-;1607:11;;:22;;1623:5;1607:22;:15;:22;:::i;:::-;1593:11;:36;;;1656:13;;;;;:9;:13;;;;;;:24;;1674:5;1656:24;:17;:24;:::i;:::-;1640:13;;;;;;;:9;:13;;;;;;;;:40;;;;1696:31;;;;;;;1640:13;;;;1696:31;;;;;;;;;;1534:201;;:::o;43:96:3:-;95:6;122:1;118;:5;:13;;130:1;118:13;;;126:1;118:13;114:17;43:96;-1:-1:-1;;;43:96:3:o;1743:209:10:-;1822:15;;;;;;;:9;:15;;;;;;:26;;1842:5;1822:26;:19;:26;:::i;:::-;1804:15;;;;;;;:9;:15;;;;;:44;;;;1873:11;:22;;1889:5;1873:22;:15;:22;:::i;:::-;1859:11;:36;;;1911:33;;;;;;;;;;;;;;;;;;;;;;1743:209;;:::o;127:120:5:-;203:10;;72:6;203:17;;127:120::o;318:108::-;378:9;408:10;;;404:14;;;408:10;404:14;;;;;;318:108;-1:-1:-1;;;318:108:5:o;47:128:4:-;131:5;;;126:16;;;;118:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
Swarm Source
bzzr://06068345b46eae497229f7412094098ca6d2f41fd8156db82d1f02c0bd9617a4
Loading...
Loading
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.