ETH Price: $2,953.29 (+0.99%)
Gas: 11 Gwei

Token

KeeperFi (KFI)
 

Overview

Max Total Supply

2,000,075.6 KFI

Holders

639

Market

Price

$0.06 @ 0.000019 ETH (-0.02%)

Onchain Market Cap

$114,879.91

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
6.6 KFI

Value
$0.38 ( ~0.000128670167787198 Eth) [0.0003%]
0x8f20a07e0541ca2db9152d7e521aee5d639b211d
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

A modified fork of the Keep3rV.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
KeeperFi

Compiler Version
v0.6.12+commit.27d51765

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2020-11-29
*/

// SPDX-License-Identifier: MIT


/**
 * KEEPERFI.COM
 * Optimized Dapp
 * Clean & tested code
 */


pragma solidity ^0.6.12;


library SafeMath {
    function add(uint a, uint b) internal pure returns (uint) {
        uint c = a + b;
        require(c >= a, "add: +");

        return c;
    }
   function add(uint a, uint b, string memory errorMessage) internal pure returns (uint) {
        uint c = a + b;
        require(c >= a, errorMessage);

        return c;
    }
   function sub(uint a, uint b) internal pure returns (uint) {
        return sub(a, b, "sub: -");
    }
   function sub(uint a, uint b, string memory errorMessage) internal pure returns (uint) {
        require(b <= a, errorMessage);
        uint c = a - b;

        return c;
    }
  function mul(uint a, uint b) internal pure returns (uint) {
       if (a == 0) {
            return 0;
        }
        uint c = a * b;
        require(c / a == b, "mul: *");

        return c;
    }
  function mul(uint a, uint b, string memory errorMessage) internal pure returns (uint) {
       if (a == 0) {
            return 0;
        }
        uint c = a * b;
        require(c / a == b, errorMessage);
        return c;
    }
  function div(uint a, uint b) internal pure returns (uint) {
        return div(a, b, "div: /");
    }
  function div(uint a, uint b, string memory errorMessage) internal pure returns (uint) {
        require(b > 0, errorMessage);
        uint c = a / b;
        return c;
    }
   function mod(uint a, uint b) internal pure returns (uint) {
        return mod(a, b, "mod: %");
    }
  function mod(uint a, uint b, string memory errorMessage) internal pure returns (uint) {
        require(b != 0, errorMessage);
        return a % b;
    }
}


contract ReentrancyGuard {
   uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor () internal {
        _status = _NOT_ENTERED;
    }

    modifier nonReentrant() {
       require(_status != _ENTERED, "ReentrancyGuard: reentrant call");
       _status = _ENTERED;
       _;
       _status = _NOT_ENTERED;
    }
}


interface IERC20 {
    function totalSupply() external view returns (uint256);
    function balanceOf(address account) external view returns (uint256);
    function transfer(address recipient, uint256 amount) external returns (bool);
    function allowance(address owner, address spender) external view returns (uint256);
    function approve(address spender, uint256 amount) external returns (bool);
    function transferFrom(address sender, address recipient, uint256 amount) external returns (bool);
    event Transfer(address indexed from, address indexed to, uint256 value);
    event Approval(address indexed owner, address indexed spender, uint256 value);
    }

library Address {
    function isContract(address account) internal view returns (bool) {
        bytes32 codehash;
        bytes32 accountHash = 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470;
        // solhint-disable-next-line no-inline-assembly
        assembly { codehash := extcodehash(account) }
        return (codehash != accountHash && codehash != 0x0);
    }
    function toPayable(address account) internal pure returns (address payable) {
        return address(uint160(account));
    }
   function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient");

        // solhint-disable-next-line avoid-call-value
        (bool success, ) = recipient.call{value:amount}("");
        require(success, "Address: reverted");
    }
}
library SafeERC20 {
    using SafeMath for uint256;
    using Address for address;

    function safeTransfer(IERC20 token, address to, uint256 value) internal {
        callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));
    }

    function safeTransferFrom(IERC20 token, address from, address to, uint256 value) internal {
        callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value));
    }

    function safeApprove(IERC20 token, address spender, uint256 value) internal {
        // solhint-disable-next-line max-line-length
        require((value == 0) || (token.allowance(address(this), spender) == 0),
            "SafeERC20: approve from non-zero to non-zero allowance"
        );
        callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value));
    }

    function safeIncreaseAllowance(IERC20 token, address spender, uint256 value) internal {
        uint256 newAllowance = token.allowance(address(this), spender).add(value);
        callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
    }

    function safeDecreaseAllowance(IERC20 token, address spender, uint256 value) internal {
        uint256 newAllowance = token.allowance(address(this), spender).sub(value, "SafeERC20: < 0");
        callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
    }

    function callOptionalReturn(IERC20 token, bytes memory data) private {
           // solhint-disable-next-line max-line-length
        require(address(token).isContract(), "SafeERC20: !contract");
        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = address(token).call(data);
        require(success, "SafeERC20: low-level call failed");
     if (returndata.length > 0) { // Return data is optional
            // solhint-disable-next-line max-line-length
            require(abi.decode(returndata, (bool)), "SafeERC20: !succeed");
        }
    }
}

library KeeperFiLibrary {
    function getReserve(address pair, address reserve) external view returns (uint) {
        (uint _r0, uint _r1,) = IUniswapV2Pair(pair).getReserves();
        if (IUniswapV2Pair(pair).token0() == reserve) {
            return _r0;
        } else if (IUniswapV2Pair(pair).token1() == reserve) {
            return _r1;
        } else {
            return 0;
        }
    }
}

interface IUniswapV2Pair {
    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;
}

interface IGovernance {
    function proposeJob(address job) external;
}

interface IKeeperFiHelper {
    function getQuoteLimit(uint gasUsed) external view returns (uint);
}

contract KeeperFi is ReentrancyGuard {
    using SafeMath for uint;
    using SafeERC20 for IERC20;

    /// @notice KeeperFi Helper to set max prices for the ecosystem
    IKeeperFiHelper public KPRH;

    /// @notice EIP-20 token name for this token
    string public constant name = "KeeperFi";

    /// @notice EIP-20 token symbol for this token
    string public constant symbol = "KFI";

    /// @notice EIP-20 token decimals for this token
    uint8 public constant decimals = 18;

    /// @notice Total number of tokens in circulation
    uint public totalSupply = 0; // Initial 0

    /// @notice A record of each accounts delegate
    mapping (address => address) public delegates;

    /// @notice A record of votes checkpoints for each account, by index
    mapping (address => mapping (uint32 => Checkpoint)) public checkpoints;

    /// @notice The number of checkpoints for each account
    mapping (address => uint32) public numCheckpoints;

    mapping (address => mapping (address => uint)) internal allowances;
    mapping (address => uint) internal balances;

    /// @notice The EIP-712 typehash for the contract's domain
    bytes32 public constant DOMAIN_TYPEHASH = keccak256("EIP712Domain(string name,uint chainId,address verifyingContract)");
    bytes32 public immutable DOMAINSEPARATOR;

    /// @notice The EIP-712 typehash for the delegation struct used by the contract
    bytes32 public constant DELEGATION_TYPEHASH = keccak256("Delegation(address delegatee,uint nonce,uint expiry)");

    /// @notice The EIP-712 typehash for the permit struct used by the contract
    bytes32 public constant PERMIT_TYPEHASH = keccak256("Permit(address owner,address spender,uint value,uint nonce,uint deadline)");


    /// @notice A record of states for signing / validating signatures
    mapping (address => uint) public nonces;

    /// @notice An event thats emitted when an account changes its delegate
    event DelegateChanged(address indexed delegator, address indexed fromDelegate, address indexed toDelegate);

    /// @notice An event thats emitted when a delegate account's vote balance changes
    event DelegateVotesChanged(address indexed delegate, uint previousBalance, uint newBalance);

    /// @notice A checkpoint for marking number of votes from a given block
    struct Checkpoint {
        uint32 fromBlock;
        uint votes;
    }

    function delegate(address delegatee) public {
        _delegate(msg.sender, delegatee);
    }

    function delegateBySig(address delegatee, uint nonce, uint expiry, uint8 v, bytes32 r, bytes32 s) public {
        bytes32 structHash = keccak256(abi.encode(DELEGATION_TYPEHASH, delegatee, nonce, expiry));
        bytes32 digest = keccak256(abi.encodePacked("\x19\x01", DOMAINSEPARATOR, structHash));
        address signatory = ecrecover(digest, v, r, s);
        require(signatory != address(0), "delegateBySig: sig");
        require(nonce == nonces[signatory]++, "delegateBySig: nonce");
        require(now <= expiry, "delegateBySig: expired");
        _delegate(signatory, delegatee);
    }

  
    function getCurrentVotes(address account) external view returns (uint) {
        uint32 nCheckpoints = numCheckpoints[account];
        return nCheckpoints > 0 ? checkpoints[account][nCheckpoints - 1].votes : 0;
    }

    function getPriorVotes(address account, uint blockNumber) public view returns (uint) {
        require(blockNumber < block.number, "getPriorVotes:");

        uint32 nCheckpoints = numCheckpoints[account];
        if (nCheckpoints == 0) {
            return 0;
        }

        // First check most recent balance
        if (checkpoints[account][nCheckpoints - 1].fromBlock <= blockNumber) {
            return checkpoints[account][nCheckpoints - 1].votes;
        }

        // Next check implicit zero balance
        if (checkpoints[account][0].fromBlock > blockNumber) {
            return 0;
        }

        uint32 lower = 0;
        uint32 upper = nCheckpoints - 1;
        while (upper > lower) {
            uint32 center = upper - (upper - lower) / 2; // ceil, avoiding overflow
            Checkpoint memory cp = checkpoints[account][center];
            if (cp.fromBlock == blockNumber) {
                return cp.votes;
            } else if (cp.fromBlock < blockNumber) {
                lower = center;
            } else {
                upper = center - 1;
            }
        }
        return checkpoints[account][lower].votes;
    }

    function _delegate(address delegator, address delegatee) internal {
        address currentDelegate = delegates[delegator];
        uint delegatorBalance = votes[delegator].add(bonds[delegator][address(this)]);
        delegates[delegator] = delegatee;

        emit DelegateChanged(delegator, currentDelegate, delegatee);

        _moveDelegates(currentDelegate, delegatee, delegatorBalance);
    }

    function _moveDelegates(address srcRep, address dstRep, uint amount) internal {
        if (srcRep != dstRep && amount > 0) {
            if (srcRep != address(0)) {
                uint32 srcRepNum = numCheckpoints[srcRep];
                uint srcRepOld = srcRepNum > 0 ? checkpoints[srcRep][srcRepNum - 1].votes : 0;
                uint srcRepNew = srcRepOld.sub(amount, "_moveVotes: underflows");
                _writeCheckpoint(srcRep, srcRepNum, srcRepOld, srcRepNew);
            }

            if (dstRep != address(0)) {
                uint32 dstRepNum = numCheckpoints[dstRep];
                uint dstRepOld = dstRepNum > 0 ? checkpoints[dstRep][dstRepNum - 1].votes : 0;
                uint dstRepNew = dstRepOld.add(amount);
                _writeCheckpoint(dstRep, dstRepNum, dstRepOld, dstRepNew);
            }
        }
    }

    function _writeCheckpoint(address delegatee, uint32 nCheckpoints, uint oldVotes, uint newVotes) internal {
      uint32 blockNumber = safe32(block.number, "_writeCheckpoint: 32 bits");

      if (nCheckpoints > 0 && checkpoints[delegatee][nCheckpoints - 1].fromBlock == blockNumber) {
          checkpoints[delegatee][nCheckpoints - 1].votes = newVotes;
      } else {
          checkpoints[delegatee][nCheckpoints] = Checkpoint(blockNumber, newVotes);
          numCheckpoints[delegatee] = nCheckpoints + 1;
      }

      emit DelegateVotesChanged(delegatee, oldVotes, newVotes);
    }

    function safe32(uint n, string memory errorMessage) internal pure returns (uint32) {
        require(n < 2**32, errorMessage);
        return uint32(n);
    }

    /// @notice The standard EIP-20 transfer event
    event Transfer(address indexed from, address indexed to, uint amount);

    /// @notice The standard EIP-20 approval event
    event Approval(address indexed owner, address indexed spender, uint amount);

    /// @notice Submit a job
    event SubmitJob(address indexed job, address indexed liquidity, address indexed provider, uint block, uint credit);

    /// @notice Apply credit to a job
    event ApplyCredit(address indexed job, address indexed liquidity, address indexed provider, uint block, uint credit);

    /// @notice Remove credit for a job
    event RemoveJob(address indexed job, address indexed liquidity, address indexed provider, uint block, uint credit);

    /// @notice Unbond credit for a job
    event UnbondJob(address indexed job, address indexed liquidity, address indexed provider, uint block, uint credit);

    /// @notice Added a Job
    event JobAdded(address indexed job, uint block, address governance);

    /// @notice Removed a job
    event JobRemoved(address indexed job, uint block, address governance);

    /// @notice Worked a job
    event KeeperWorked(address indexed credit, address indexed job, address indexed keeper, uint block, uint amount);

    /// @notice Keeper bonding
    event KeeperBonding(address indexed keeper, uint block, uint active, uint bond);

    /// @notice Keeper bonded
    event KeeperBonded(address indexed keeper, uint block, uint activated, uint bond);

    /// @notice Keeper unbonding
    event KeeperUnbonding(address indexed keeper, uint block, uint deactive, uint bond);

    /// @notice Keeper unbound
    event KeeperUnbound(address indexed keeper, uint block, uint deactivated, uint bond);

    /// @notice Keeper slashed
    event KeeperSlashed(address indexed keeper, address indexed slasher, uint block, uint slash);

    /// @notice Keeper disputed
    event KeeperDispute(address indexed keeper, uint block);

    /// @notice Keeper resolved
    event KeeperResolved(address indexed keeper, uint block);

    event AddCredit(address indexed credit, address indexed job, address indexed creditor, uint block, uint amount);

    /// @notice 1 day to bond to become a keeper
    uint constant public BOND = 1 days;
    /// @notice 14 days to unbond to remove funds from being a keeper
    uint constant public UNBOND = 13 days;
    /// @notice 3 days till liquidity can be bound
    uint constant public LIQUIDITYBOND = 1 days;

    /// @notice direct liquidity fee 0.3%
    uint constant public FEE = 50;
    uint constant public BASE = 10000;

    /// @notice address used for ETH transfers
    address constant public ETH = address(0xE);

    /// @notice tracks all current bondings (time)
    mapping(address => mapping(address => uint)) public bondings;
    /// @notice tracks all current unbondings (time)
    mapping(address => mapping(address => uint)) public unbondings;
    /// @notice allows for partial unbonding
    mapping(address => mapping(address => uint)) public partialUnbonding;
    /// @notice tracks all current pending bonds (amount)
    mapping(address => mapping(address => uint)) public pendingbonds;
    /// @notice tracks how much a keeper has bonded
    mapping(address => mapping(address => uint)) public bonds;
    /// @notice tracks underlying votes (that don't have bond)
    mapping(address => uint) public votes;

    /// @notice total bonded (totalSupply for bonds)
    uint public totalBonded = 0;
    /// @notice tracks when a keeper was first registered
    mapping(address => uint) public firstSeen;

    /// @notice tracks if a keeper has a pending dispute
    mapping(address => bool) public disputes;

    /// @notice tracks last job performed for a keeper
    mapping(address => uint) public lastJob;
    /// @notice tracks the total job executions for a keeper
    mapping(address => uint) public workCompleted;
    /// @notice list of all jobs registered for the keeper system
    mapping(address => bool) public jobs;
    /// @notice the current credit available for a job
    mapping(address => mapping(address => uint)) public credits;
    /// @notice the balances for the liquidity providers
    mapping(address => mapping(address => mapping(address => uint))) public liquidityProvided;
    /// @notice liquidity unbonding days
    mapping(address => mapping(address => mapping(address => uint))) public liquidityUnbonding;
    /// @notice liquidity unbonding amounts
    mapping(address => mapping(address => mapping(address => uint))) public liquidityAmountsUnbonding;
    /// @notice job proposal delay
    mapping(address => uint) public jobProposalDelay;
    /// @notice liquidity apply date
    mapping(address => mapping(address => mapping(address => uint))) public liquidityApplied;
    /// @notice liquidity amount to apply
    mapping(address => mapping(address => mapping(address => uint))) public liquidityAmount;

    /// @notice list of all current keepers
    mapping(address => bool) public keepers;
    /// @notice blacklist of keepers not allowed to participate
    mapping(address => bool) public blacklist;

    /// @notice traversable array of keepers to make external management easier
    address[] public keeperList;
    /// @notice traversable array of jobs to make external management easier
    address[] public jobList;

    /// @notice governance address for the governance contract
    address public governance;
    address public pendingGovernance;

    /// @notice the liquidity token supplied by users paying for jobs
    mapping(address => bool) public liquidityAccepted;

    address[] public liquidityPairs;

    uint internal _gasUsed;

    constructor(address _kph) public {
        // Set governance for this token
        governance = msg.sender;
        DOMAINSEPARATOR = keccak256(abi.encode(DOMAIN_TYPEHASH, keccak256(bytes(name)), _getChainId(), address(this)));
        KPRH = IKeeperFiHelper(_kph);
    }

    /**
     * @notice Add ETH credit to a job to be paid out for work
     * @param job the job being credited
     */
    function addCreditETH(address job) external payable {
        require(jobs[job], "addCreditETH: !job");
        uint _fee = msg.value.mul(FEE).div(BASE);
        credits[job][ETH] = credits[job][ETH].add(msg.value.sub(_fee));
        payable(governance).transfer(_fee);

        emit AddCredit(ETH, job, msg.sender, block.number, msg.value);
    }

    function addCredit(address credit, address job, uint amount) external nonReentrant {
        require(jobs[job], "addCreditETH: !job");
        uint _before = IERC20(credit).balanceOf(address(this));
        IERC20(credit).safeTransferFrom(msg.sender, address(this), amount);
        uint _received = IERC20(credit).balanceOf(address(this)).sub(_before);
        uint _fee = _received.mul(FEE).div(BASE);
        credits[job][credit] = credits[job][credit].add(_received.sub(_fee));
        IERC20(credit).safeTransfer(governance, _fee);

        emit AddCredit(credit, job, msg.sender, block.number, _received);
    }

    function addVotes(address voter, uint amount) external {
        require(msg.sender == governance, "addVotes: !gov");
        _activate(voter, address(this));
        votes[voter] = votes[voter].add(amount);
        totalBonded = totalBonded.add(amount);
        _moveDelegates(address(0), delegates[voter], amount);
    }

 
    function removeVotes(address voter, uint amount) external {
        require(msg.sender == governance, "addVotes: !gov");
        votes[voter] = votes[voter].sub(amount);
        totalBonded = totalBonded.sub(amount);
        _moveDelegates(delegates[voter], address(0), amount);
    }

    function addKPRCredit(address job, uint amount) external {
        require(msg.sender == governance, "addKPRCredit: !gov");
        require(jobs[job], "addKPRCredit: !job");
        credits[job][address(this)] = credits[job][address(this)].add(amount);
        _mint(address(this), amount);
        emit AddCredit(address(this), job, msg.sender, block.number, amount);
    }

 
    function approveLiquidity(address liquidity) external {
        require(msg.sender == governance, "approveLiquidity: !gov");
        require(!liquidityAccepted[liquidity], "approveLiquidity: !pair");
        liquidityAccepted[liquidity] = true;
        liquidityPairs.push(liquidity);
    }

    function revokeLiquidity(address liquidity) external {
        require(msg.sender == governance, "revokeLiquidity: !gov");
        liquidityAccepted[liquidity] = false;
    }

    function pairs() external view returns (address[] memory) {
        return liquidityPairs;
    }

  
    function addLiquidityToJob(address liquidity, address job, uint amount) external nonReentrant {
        require(liquidityAccepted[liquidity], "addLiquidityToJob: !pair");
        IERC20(liquidity).safeTransferFrom(msg.sender, address(this), amount);
        liquidityProvided[msg.sender][liquidity][job] = liquidityProvided[msg.sender][liquidity][job].add(amount);

        liquidityApplied[msg.sender][liquidity][job] = now.add(LIQUIDITYBOND);
        liquidityAmount[msg.sender][liquidity][job] = liquidityAmount[msg.sender][liquidity][job].add(amount);

        if (!jobs[job] && jobProposalDelay[job] < now) {
            IGovernance(governance).proposeJob(job);
            jobProposalDelay[job] = now.add(UNBOND);
        }
        emit SubmitJob(job, liquidity, msg.sender, block.number, amount);
    }

    function applyCreditToJob(address provider, address liquidity, address job) external {
        require(liquidityAccepted[liquidity], "addLiquidityToJob: !pair");
        require(liquidityApplied[provider][liquidity][job] != 0, "credit: no bond");
        require(liquidityApplied[provider][liquidity][job] < now, "credit: bonding");
        uint _liquidity = KeeperFiLibrary.getReserve(liquidity, address(this));
        uint _credit = _liquidity.mul(liquidityAmount[provider][liquidity][job]).div(IERC20(liquidity).totalSupply());
        _mint(address(this), _credit);
        credits[job][address(this)] = credits[job][address(this)].add(_credit);
        liquidityAmount[provider][liquidity][job] = 0;

        emit ApplyCredit(job, liquidity, provider, block.number, _credit);
    }

    function unbondLiquidityFromJob(address liquidity, address job, uint amount) external {
        require(liquidityAmount[msg.sender][liquidity][job] == 0, "credit: pending credit");
        liquidityUnbonding[msg.sender][liquidity][job] = now.add(UNBOND);
        liquidityAmountsUnbonding[msg.sender][liquidity][job] = liquidityAmountsUnbonding[msg.sender][liquidity][job].add(amount);
        require(liquidityAmountsUnbonding[msg.sender][liquidity][job] <= liquidityProvided[msg.sender][liquidity][job], "unbondLiquidityFromJob: insufficient funds");

        uint _liquidity = KeeperFiLibrary.getReserve(liquidity, address(this));
        uint _credit = _liquidity.mul(amount).div(IERC20(liquidity).totalSupply());
        if (_credit > credits[job][address(this)]) {
            _burn(address(this), credits[job][address(this)]);
            credits[job][address(this)] = 0;
        } else {
            _burn(address(this), _credit);
            credits[job][address(this)] = credits[job][address(this)].sub(_credit);
        }

        emit UnbondJob(job, liquidity, msg.sender, block.number, amount);
    }

    function removeLiquidityFromJob(address liquidity, address job) external {
        require(liquidityUnbonding[msg.sender][liquidity][job] != 0, "removeJob: unbond");
        require(liquidityUnbonding[msg.sender][liquidity][job] < now, "removeJob: unbonding");
        uint _amount = liquidityAmountsUnbonding[msg.sender][liquidity][job];
        liquidityProvided[msg.sender][liquidity][job] = liquidityProvided[msg.sender][liquidity][job].sub(_amount);
        liquidityAmountsUnbonding[msg.sender][liquidity][job] = 0;
        IERC20(liquidity).safeTransfer(msg.sender, _amount);

        emit RemoveJob(job, liquidity, msg.sender, block.number, _amount);
    }

    function mint(uint amount) external {
        require(msg.sender == governance, "mint: !gov");
        _mint(governance, amount);
    }

  
    function burn(uint amount) external {
        _burn(msg.sender, amount);
    }

    function _mint(address dst, uint amount) internal {
        totalSupply = totalSupply.add(amount);
        balances[dst] = balances[dst].add(amount);
        emit Transfer(address(0), dst, amount);
    }

    function _burn(address dst, uint amount) internal {
        require(dst != address(0), "_burn: zero address");
        balances[dst] = balances[dst].sub(amount, "_burn: exceeds balance");
        totalSupply = totalSupply.sub(amount);
        emit Transfer(dst, address(0), amount);
    }

    function worked(address keeper) external {
        workReceipt(keeper, KPRH.getQuoteLimit(_gasUsed.sub(gasleft())));
    }

    function workReceipt(address keeper, uint amount) public {
        require(jobs[msg.sender], "workReceipt: !job");
        require(amount <= KPRH.getQuoteLimit(_gasUsed.sub(gasleft())), "workReceipt: max limit");
        credits[msg.sender][address(this)] = credits[msg.sender][address(this)].sub(amount, "workReceipt: insuffient funds");
        lastJob[keeper] = now;
        _reward(keeper, amount);
        workCompleted[keeper] = workCompleted[keeper].add(amount);
        emit KeeperWorked(address(this), msg.sender, keeper, block.number, amount);
    }

  
    function receipt(address credit, address keeper, uint amount) external {
        require(jobs[msg.sender], "receipt: !job");
        credits[msg.sender][credit] = credits[msg.sender][credit].sub(amount, "workReceipt: insuffient funds");
        lastJob[keeper] = now;
        IERC20(credit).safeTransfer(keeper, amount);
        emit KeeperWorked(credit, msg.sender, keeper, block.number, amount);
    }

  
    function receiptETH(address keeper, uint amount) external {
        require(jobs[msg.sender], "receipt: !job");
        credits[msg.sender][ETH] = credits[msg.sender][ETH].sub(amount, "workReceipt: insuffient funds");
        lastJob[keeper] = now;
        payable(keeper).transfer(amount);
        emit KeeperWorked(ETH, msg.sender, keeper, block.number, amount);
    }

    function _reward(address _from, uint _amount) internal {
        bonds[_from][address(this)] = bonds[_from][address(this)].add(_amount);
        totalBonded = totalBonded.add(_amount);
        _moveDelegates(address(0), delegates[_from], _amount);
        emit Transfer(msg.sender, _from, _amount);
    }

    function _bond(address bonding, address _from, uint _amount) internal {
        bonds[_from][bonding] = bonds[_from][bonding].add(_amount);
        if (bonding == address(this)) {
            totalBonded = totalBonded.add(_amount);
            _moveDelegates(address(0), delegates[_from], _amount);
        }
    }

    function _unbond(address bonding, address _from, uint _amount) internal {
        bonds[_from][bonding] = bonds[_from][bonding].sub(_amount);
        if (bonding == address(this)) {
            totalBonded = totalBonded.sub(_amount);
            _moveDelegates(delegates[_from], address(0), _amount);
        }

    }

    function addJob(address job) external {
        require(msg.sender == governance, "addJob: !gov");
        require(!jobs[job], "addJob: job known");
        jobs[job] = true;
        jobList.push(job);
        emit JobAdded(job, block.number, msg.sender);
    }

  
    function getJobs() external view returns (address[] memory) {
        return jobList;
    }

 
    function removeJob(address job) external {
        require(msg.sender == governance, "removeJob: !gov");
        jobs[job] = false;
        emit JobRemoved(job, block.number, msg.sender);
    }

    function setKeeperFiHelper(IKeeperFiHelper _kprh) external {
        require(msg.sender == governance, "setKeeperFiHelper: !gov");
        KPRH = _kprh;
    }

  
    function setGovernance(address _governance) external {
        require(msg.sender == governance, "setGovernance: !gov");
        pendingGovernance = _governance;
    }

    /**
     * @notice Allows pendingGovernance to accept their role as governance (protection pattern)
     */
    function acceptGovernance() external {
        require(msg.sender == pendingGovernance, "acceptGovernance: !pendingGov");
        governance = pendingGovernance;
    }

    function isKeeper(address keeper) external returns (bool) {
        _gasUsed = gasleft();
        return keepers[keeper];
    }

    function isMinKeeper(address keeper, uint minBond, uint earned, uint age) external returns (bool) {
        _gasUsed = gasleft();
        return keepers[keeper]
                && bonds[keeper][address(this)].add(votes[keeper]) >= minBond
                && workCompleted[keeper] >= earned
                && now.sub(firstSeen[keeper]) >= age;
    }

  
    function isBondedKeeper(address keeper, address bond, uint minBond, uint earned, uint age) external returns (bool) {
        _gasUsed = gasleft();
        return keepers[keeper]
                && bonds[keeper][bond] >= minBond
                && workCompleted[keeper] >= earned
                && now.sub(firstSeen[keeper]) >= age;
    }

 
    function bond(address bonding, uint amount) external nonReentrant {
        require(!blacklist[msg.sender], "bond: blacklisted");
        bondings[msg.sender][bonding] = now.add(BOND);
        if (bonding == address(this)) {
            _transferTokens(msg.sender, address(this), amount);
        } else {
            uint _before = IERC20(bonding).balanceOf(address(this));
            IERC20(bonding).safeTransferFrom(msg.sender, address(this), amount);
            amount = IERC20(bonding).balanceOf(address(this)).sub(_before);
        }
        pendingbonds[msg.sender][bonding] = pendingbonds[msg.sender][bonding].add(amount);
        emit KeeperBonding(msg.sender, block.number, bondings[msg.sender][bonding], amount);
    }

   
    function getKeepers() external view returns (address[] memory) {
        return keeperList;
    }

  
    function activate(address bonding) external {
        require(!blacklist[msg.sender], "activate: blacklisted");
        require(bondings[msg.sender][bonding] != 0 && bondings[msg.sender][bonding] < now, "activate: bonding");
        _activate(msg.sender, bonding);
    }
    
    function _activate(address keeper, address bonding) internal {
        if (firstSeen[keeper] == 0) {
          firstSeen[keeper] = now;
          keeperList.push(keeper);
          lastJob[keeper] = now;
        }
        keepers[keeper] = true;
        _bond(bonding, keeper, pendingbonds[keeper][bonding]);
        pendingbonds[keeper][bonding] = 0;
        emit KeeperBonded(keeper, block.number, block.timestamp, bonds[keeper][bonding]);
    }

  
    function unbond(address bonding, uint amount) external {
        unbondings[msg.sender][bonding] = now.add(UNBOND);
        _unbond(bonding, msg.sender, amount);
        partialUnbonding[msg.sender][bonding] = partialUnbonding[msg.sender][bonding].add(amount);
        emit KeeperUnbonding(msg.sender, block.number, unbondings[msg.sender][bonding], amount);
    }

  
    function withdraw(address bonding) external nonReentrant {
        require(unbondings[msg.sender][bonding] != 0 && unbondings[msg.sender][bonding] < now, "withdraw: unbonding");
        require(!disputes[msg.sender], "withdraw: disputes");

        if (bonding == address(this)) {
            _transferTokens(address(this), msg.sender, partialUnbonding[msg.sender][bonding]);
        } else {
            IERC20(bonding).safeTransfer(msg.sender, partialUnbonding[msg.sender][bonding]);
        }
        emit KeeperUnbound(msg.sender, block.number, block.timestamp, partialUnbonding[msg.sender][bonding]);
        partialUnbonding[msg.sender][bonding] = 0;
    }

   
    function dispute(address keeper) external {
        require(msg.sender == governance, "dispute: !gov");
        disputes[keeper] = true;
        emit KeeperDispute(keeper, block.number);
    }

  
    function slash(address bonded, address keeper, uint amount) public nonReentrant {
        require(msg.sender == governance, "slash: !gov");
        if (bonded == address(this)) {
            _transferTokens(address(this), governance, amount);
        } else {
            IERC20(bonded).safeTransfer(governance, amount);
        }
        _unbond(bonded, keeper, amount);
        disputes[keeper] = false;
        emit KeeperSlashed(keeper, msg.sender, block.number, amount);
    }

    function revoke(address keeper) external {
        require(msg.sender == governance, "slash: !gov");
        keepers[keeper] = false;
        blacklist[keeper] = true;
        slash(address(this), keeper, bonds[keeper][address(this)]);
    }

  
    function resolve(address keeper) external {
        require(msg.sender == governance, "resolve: !gov");
        disputes[keeper] = false;
        emit KeeperResolved(keeper, block.number);
    }

   
    function allowance(address account, address spender) external view returns (uint) {
        return allowances[account][spender];
    }

  
    function approve(address spender, uint amount) public returns (bool) {
        allowances[msg.sender][spender] = amount;

        emit Approval(msg.sender, spender, amount);
        return true;
    }

   
    function permit(address owner, address spender, uint amount, uint deadline, uint8 v, bytes32 r, bytes32 s) external {
        bytes32 structHash = keccak256(abi.encode(PERMIT_TYPEHASH, owner, spender, amount, nonces[owner]++, deadline));
        bytes32 digest = keccak256(abi.encodePacked("\x19\x01", DOMAINSEPARATOR, structHash));
        address signatory = ecrecover(digest, v, r, s);
        require(signatory != address(0), "permit: signature");
        require(signatory == owner, "permit: unauthorized");
        require(now <= deadline, "permit: expired");

        allowances[owner][spender] = amount;

        emit Approval(owner, spender, amount);
    }

    function balanceOf(address account) external view returns (uint) {
        return balances[account];
    }

    
    function transfer(address dst, uint amount) public returns (bool) {
        _transferTokens(msg.sender, dst, amount);
        return true;
    }

  
    function transferFrom(address src, address dst, uint amount) external returns (bool) {
        address spender = msg.sender;
        uint spenderAllowance = allowances[src][spender];

        if (spender != src && spenderAllowance != uint(-1)) {
            uint newAllowance = spenderAllowance.sub(amount, "transferFrom: exceeds spender allowance");
            allowances[src][spender] = newAllowance;

            emit Approval(src, spender, newAllowance);
        }

        _transferTokens(src, dst, amount);
        return true;
    }

    function _transferTokens(address src, address dst, uint amount) internal {
        require(src != address(0), "_transferTokens: zero address");
        require(dst != address(0), "_transferTokens: zero address");

        balances[src] = balances[src].sub(amount, "_transferTokens: exceeds balance");
        balances[dst] = balances[dst].add(amount, "_transferTokens: overflows");
        emit Transfer(src, dst, amount);
    }

    function _getChainId() internal pure returns (uint) {
        uint chainId;
        assembly { chainId := chainid() }
        return chainId;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_kph","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"credit","type":"address"},{"indexed":true,"internalType":"address","name":"job","type":"address"},{"indexed":true,"internalType":"address","name":"creditor","type":"address"},{"indexed":false,"internalType":"uint256","name":"block","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"AddCredit","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"job","type":"address"},{"indexed":true,"internalType":"address","name":"liquidity","type":"address"},{"indexed":true,"internalType":"address","name":"provider","type":"address"},{"indexed":false,"internalType":"uint256","name":"block","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"credit","type":"uint256"}],"name":"ApplyCredit","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"delegator","type":"address"},{"indexed":true,"internalType":"address","name":"fromDelegate","type":"address"},{"indexed":true,"internalType":"address","name":"toDelegate","type":"address"}],"name":"DelegateChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"delegate","type":"address"},{"indexed":false,"internalType":"uint256","name":"previousBalance","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newBalance","type":"uint256"}],"name":"DelegateVotesChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"job","type":"address"},{"indexed":false,"internalType":"uint256","name":"block","type":"uint256"},{"indexed":false,"internalType":"address","name":"governance","type":"address"}],"name":"JobAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"job","type":"address"},{"indexed":false,"internalType":"uint256","name":"block","type":"uint256"},{"indexed":false,"internalType":"address","name":"governance","type":"address"}],"name":"JobRemoved","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"keeper","type":"address"},{"indexed":false,"internalType":"uint256","name":"block","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"activated","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"bond","type":"uint256"}],"name":"KeeperBonded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"keeper","type":"address"},{"indexed":false,"internalType":"uint256","name":"block","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"active","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"bond","type":"uint256"}],"name":"KeeperBonding","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"keeper","type":"address"},{"indexed":false,"internalType":"uint256","name":"block","type":"uint256"}],"name":"KeeperDispute","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"keeper","type":"address"},{"indexed":false,"internalType":"uint256","name":"block","type":"uint256"}],"name":"KeeperResolved","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"keeper","type":"address"},{"indexed":true,"internalType":"address","name":"slasher","type":"address"},{"indexed":false,"internalType":"uint256","name":"block","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"slash","type":"uint256"}],"name":"KeeperSlashed","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"keeper","type":"address"},{"indexed":false,"internalType":"uint256","name":"block","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"deactive","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"bond","type":"uint256"}],"name":"KeeperUnbonding","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"keeper","type":"address"},{"indexed":false,"internalType":"uint256","name":"block","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"deactivated","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"bond","type":"uint256"}],"name":"KeeperUnbound","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"credit","type":"address"},{"indexed":true,"internalType":"address","name":"job","type":"address"},{"indexed":true,"internalType":"address","name":"keeper","type":"address"},{"indexed":false,"internalType":"uint256","name":"block","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"KeeperWorked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"job","type":"address"},{"indexed":true,"internalType":"address","name":"liquidity","type":"address"},{"indexed":true,"internalType":"address","name":"provider","type":"address"},{"indexed":false,"internalType":"uint256","name":"block","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"credit","type":"uint256"}],"name":"RemoveJob","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"job","type":"address"},{"indexed":true,"internalType":"address","name":"liquidity","type":"address"},{"indexed":true,"internalType":"address","name":"provider","type":"address"},{"indexed":false,"internalType":"uint256","name":"block","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"credit","type":"uint256"}],"name":"SubmitJob","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":"amount","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"job","type":"address"},{"indexed":true,"internalType":"address","name":"liquidity","type":"address"},{"indexed":true,"internalType":"address","name":"provider","type":"address"},{"indexed":false,"internalType":"uint256","name":"block","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"credit","type":"uint256"}],"name":"UnbondJob","type":"event"},{"inputs":[],"name":"BASE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"BOND","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DELEGATION_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DOMAINSEPARATOR","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DOMAIN_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ETH","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"FEE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"KPRH","outputs":[{"internalType":"contract IKeeperFiHelper","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"LIQUIDITYBOND","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PERMIT_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"UNBOND","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"acceptGovernance","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"bonding","type":"address"}],"name":"activate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"credit","type":"address"},{"internalType":"address","name":"job","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"addCredit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"job","type":"address"}],"name":"addCreditETH","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"job","type":"address"}],"name":"addJob","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"job","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"addKPRCredit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"liquidity","type":"address"},{"internalType":"address","name":"job","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"addLiquidityToJob","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"voter","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"addVotes","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"provider","type":"address"},{"internalType":"address","name":"liquidity","type":"address"},{"internalType":"address","name":"job","type":"address"}],"name":"applyCreditToJob","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"liquidity","type":"address"}],"name":"approveLiquidity","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"blacklist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"bonding","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"bond","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"}],"name":"bondings","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"}],"name":"bonds","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint32","name":"","type":"uint32"}],"name":"checkpoints","outputs":[{"internalType":"uint32","name":"fromBlock","type":"uint32"},{"internalType":"uint256","name":"votes","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"}],"name":"credits","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"delegatee","type":"address"}],"name":"delegate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"delegatee","type":"address"},{"internalType":"uint256","name":"nonce","type":"uint256"},{"internalType":"uint256","name":"expiry","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"delegateBySig","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"delegates","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"keeper","type":"address"}],"name":"dispute","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"disputes","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"firstSeen","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"getCurrentVotes","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getJobs","outputs":[{"internalType":"address[]","name":"","type":"address[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getKeepers","outputs":[{"internalType":"address[]","name":"","type":"address[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"blockNumber","type":"uint256"}],"name":"getPriorVotes","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"governance","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"keeper","type":"address"},{"internalType":"address","name":"bond","type":"address"},{"internalType":"uint256","name":"minBond","type":"uint256"},{"internalType":"uint256","name":"earned","type":"uint256"},{"internalType":"uint256","name":"age","type":"uint256"}],"name":"isBondedKeeper","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"keeper","type":"address"}],"name":"isKeeper","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"keeper","type":"address"},{"internalType":"uint256","name":"minBond","type":"uint256"},{"internalType":"uint256","name":"earned","type":"uint256"},{"internalType":"uint256","name":"age","type":"uint256"}],"name":"isMinKeeper","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"jobList","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"jobProposalDelay","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"jobs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"keeperList","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"keepers","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"lastJob","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"liquidityAccepted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"}],"name":"liquidityAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"}],"name":"liquidityAmountsUnbonding","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"}],"name":"liquidityApplied","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"liquidityPairs","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"}],"name":"liquidityProvided","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"}],"name":"liquidityUnbonding","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"nonces","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"numCheckpoints","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pairs","outputs":[{"internalType":"address[]","name":"","type":"address[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"}],"name":"partialUnbonding","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pendingGovernance","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"}],"name":"pendingbonds","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","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":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"credit","type":"address"},{"internalType":"address","name":"keeper","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"receipt","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"keeper","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"receiptETH","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"job","type":"address"}],"name":"removeJob","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"liquidity","type":"address"},{"internalType":"address","name":"job","type":"address"}],"name":"removeLiquidityFromJob","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"voter","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"removeVotes","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"keeper","type":"address"}],"name":"resolve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"keeper","type":"address"}],"name":"revoke","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"liquidity","type":"address"}],"name":"revokeLiquidity","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_governance","type":"address"}],"name":"setGovernance","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IKeeperFiHelper","name":"_kprh","type":"address"}],"name":"setKeeperFiHelper","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"bonded","type":"address"},{"internalType":"address","name":"keeper","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"slash","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalBonded","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"dst","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"src","type":"address"},{"internalType":"address","name":"dst","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"bonding","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"unbond","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"liquidity","type":"address"},{"internalType":"address","name":"job","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"unbondLiquidityFromJob","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"}],"name":"unbondings","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"votes","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"bonding","type":"address"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"workCompleted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"keeper","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"workReceipt","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"keeper","type":"address"}],"name":"worked","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60a060405260006002556000600f553480156200001b57600080fd5b506040516200612938038062006129833981810160405260208110156200004157600080fd5b50516001600055602080546001600160a01b031916331781556040805180820190915260088152674b6565706572466960c01b9101527f797cfab58fcb15f590eb8e4252d5c228ff88f94f907e119e80c4393a946e8f357ffaf49e5aeb94fc0e4a7a3e512552b9641756d925905d98f4710afc2d37883298620000c362000129565b604080516020808201959095528082019390935260608301919091523060808084019190915281518084038201815260a0909301909152815191909201209052600180546001600160a01b0319166001600160a01b03929092169190911790556200012d565b4690565b608051615fd76200015260003980611c2b52806141d652806146705250615fd76000f3fe6080604052600436106104f75760003560e01c80637ecebe001161028c578063ce6a08801161015a578063e74f8239116100cc578063f39c38a011610085578063f39c38a01461166f578063f75f9f7b14611684578063f9d46cf2146116b7578063f9f92be414611706578063fede700814611739578063ffb0a4a01461177e576104f7565b8063e74f823914611546578063e7a324dc14611589578063eb421f3b1461159e578063ec342ad0146115d1578063ec4515dd146115e6578063f1127ed814611610576104f7565b8063db7f91831161011e578063db7f9183146113ec578063dd62ed3e1461141f578063de63298d1461145a578063deac354114611493578063def70844146114ce578063e326ac4314611513576104f7565b8063ce6a0880146112b6578063d454019d146112ef578063d505accf14611322578063d8ae6faf14611380578063d8bff5a5146113b9576104f7565b8063a5d059ca116101fe578063b600702a116101b7578063b600702a146111a2578063bb49096d146111d5578063c1c1d21814610784578063c3cda5201461121a578063c5198abc1461126e578063c57981b5146112a1576104f7565b8063a5d059ca14611082578063a9059cbb146110bb578063ab033ea9146110f4578063b0103b1a14611127578063b105e39f1461115a578063b4b5ea571461116f576104f7565b80638d9acd2e116102505780638d9acd2e14610f5157806395d89b4114610f945780639af7728414610fa9578063a0712d6814610fe4578063a39744b51461100e578063a515366a14611049576104f7565b80637ecebe0014610e4e5780638071198914610e815780638322fff214610eb457806383baa69314610ec957806388b4ac8314610f0e576104f7565b80634395d8ba116103c9578063603c68601161033b5780636dab5dcf116102f45780636dab5dcf14610d0a5780636fcfff4514610d3057806370a0823114610d7c57806374a8f10314610daf5780637724ff6814610de2578063782d6fe114610e15576104f7565b8063603c686014610b8e578063637cd7f014610bc957806364bb43ee14610c0457806367da318414610c3757806368581ebd14610c725780636ba42aaa14610cd7576104f7565b806355ea6c471161038d57806355ea6c4714610a98578063587cde1e14610acb5780635aa6e67514610afe5780635c19a95c14610b135780635feeb79414610b46578063603b4d1414610b79576104f7565b80634395d8ba1461098f57806344d96e95146109d45780634b3fde21146109e957806351cff8d914610a2257806352a4de2914610a55576104f7565b80631df0de131161046d57806330adf81f1161042657806330adf81f14610884578063313ce5671461089957806337feca84146108c45780633bbd64bc146108ff5780633d1f0bb91461093257806342966c6814610965576104f7565b80631df0de13146107845780631ff5f3da1461079957806320606b70146107de5780632119a62a146107f3578063238efcbc1461082c57806323b872dd14610841576104f7565b80631778e29c116104bf5780631778e29c1461067357806318160ddd1461069a5780631992d206146106af5780631b44555e146106f45780631b7a1fb2146107275780631c5a9d9c14610751576104f7565b806306fdde03146104fc578063095ea7b31461058657806309aff02b146105d35780630c33c522146106045780631101eb411461062e575b600080fd5b34801561050857600080fd5b50610511611793565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561054b578181015183820152602001610533565b50505050905090810190601f1680156105785780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561059257600080fd5b506105bf600480360360408110156105a957600080fd5b506001600160a01b0381351690602001356117b7565b604080519115158252519081900360200190f35b3480156105df57600080fd5b506105e861181e565b604080516001600160a01b039092168252519081900360200190f35b34801561061057600080fd5b506105e86004803603602081101561062757600080fd5b503561182d565b34801561063a57600080fd5b506106716004803603606081101561065157600080fd5b506001600160a01b03813581169160208101359091169060400135611854565b005b34801561067f57600080fd5b50610688611c29565b60408051918252519081900360200190f35b3480156106a657600080fd5b50610688611c4d565b3480156106bb57600080fd5b50610688600480360360608110156106d257600080fd5b506001600160a01b038135811691602081013582169160409091013516611c53565b34801561070057600080fd5b506106886004803603602081101561071757600080fd5b50356001600160a01b0316611c76565b34801561073357600080fd5b506105e86004803603602081101561074a57600080fd5b5035611c88565b34801561075d57600080fd5b506106716004803603602081101561077457600080fd5b50356001600160a01b0316611c95565b34801561079057600080fd5b50610688611d98565b3480156107a557600080fd5b506105bf600480360360808110156107bc57600080fd5b506001600160a01b038135169060208101359060408101359060600135611d9f565b3480156107ea57600080fd5b50610688611e61565b3480156107ff57600080fd5b506106716004803603604081101561081657600080fd5b506001600160a01b038135169060200135611e85565b34801561083857600080fd5b50610671611fe4565b34801561084d57600080fd5b506105bf6004803603606081101561086457600080fd5b506001600160a01b03813581169160208101359091169060400135612067565b34801561089057600080fd5b50610688612149565b3480156108a557600080fd5b506108ae61216d565b6040805160ff9092168252519081900360200190f35b3480156108d057600080fd5b50610688600480360360408110156108e757600080fd5b506001600160a01b0381358116916020013516612172565b34801561090b57600080fd5b506105bf6004803603602081101561092257600080fd5b50356001600160a01b031661218f565b34801561093e57600080fd5b506105bf6004803603602081101561095557600080fd5b50356001600160a01b03166121a4565b34801561097157600080fd5b506106716004803603602081101561098857600080fd5b50356121b9565b34801561099b57600080fd5b50610671600480360360608110156109b257600080fd5b506001600160a01b0381358116916020810135821691604090910135166121c3565b3480156109e057600080fd5b5061068861251b565b3480156109f557600080fd5b5061067160048036036040811015610a0c57600080fd5b506001600160a01b038135169060200135612521565b348015610a2e57600080fd5b5061067160048036036020811015610a4557600080fd5b50356001600160a01b031661275c565b348015610a6157600080fd5b5061067160048036036060811015610a7857600080fd5b506001600160a01b038135811691602081013590911690604001356129a0565b348015610aa457600080fd5b5061067160048036036020811015610abb57600080fd5b50356001600160a01b0316612c9d565b348015610ad757600080fd5b506105e860048036036020811015610aee57600080fd5b50356001600160a01b0316612d44565b348015610b0a57600080fd5b506105e8612d5f565b348015610b1f57600080fd5b5061067160048036036020811015610b3657600080fd5b50356001600160a01b0316612d6e565b348015610b5257600080fd5b5061067160048036036020811015610b6957600080fd5b50356001600160a01b0316612d78565b348015610b8557600080fd5b50610688612e01565b348015610b9a57600080fd5b5061067160048036036040811015610bb157600080fd5b506001600160a01b0381358116916020013516612e08565b348015610bd557600080fd5b5061068860048036036040811015610bec57600080fd5b506001600160a01b038135811691602001351661300f565b348015610c1057600080fd5b5061067160048036036020811015610c2757600080fd5b50356001600160a01b031661302c565b348015610c4357600080fd5b5061068860048036036040811015610c5a57600080fd5b506001600160a01b03813581169160200135166130a4565b348015610c7e57600080fd5b50610c876130c1565b60408051602080825283518183015283519192839290830191858101910280838360005b83811015610cc3578181015183820152602001610cab565b505050509050019250505060405180910390f35b348015610ce357600080fd5b506105bf60048036036020811015610cfa57600080fd5b50356001600160a01b0316613123565b61067160048036036020811015610d2057600080fd5b50356001600160a01b0316613148565b348015610d3c57600080fd5b50610d6360048036036020811015610d5357600080fd5b50356001600160a01b031661329e565b6040805163ffffffff9092168252519081900360200190f35b348015610d8857600080fd5b5061068860048036036020811015610d9f57600080fd5b50356001600160a01b03166132b6565b348015610dbb57600080fd5b5061067160048036036020811015610dd257600080fd5b50356001600160a01b03166132d1565b348015610dee57600080fd5b5061068860048036036020811015610e0557600080fd5b50356001600160a01b0316613372565b348015610e2157600080fd5b5061068860048036036040811015610e3857600080fd5b506001600160a01b038135169060200135613384565b348015610e5a57600080fd5b5061068860048036036020811015610e7157600080fd5b50356001600160a01b0316613593565b348015610e8d57600080fd5b5061067160048036036020811015610ea457600080fd5b50356001600160a01b03166135a5565b348015610ec057600080fd5b506105e8613657565b348015610ed557600080fd5b5061068860048036036060811015610eec57600080fd5b506001600160a01b03813581169160208101358216916040909101351661365c565b348015610f1a57600080fd5b5061067160048036036060811015610f3157600080fd5b506001600160a01b0381358116916020810135909116906040013561367f565b348015610f5d57600080fd5b5061067160048036036060811015610f7457600080fd5b506001600160a01b03813581169160208101359091169060400135613935565b348015610fa057600080fd5b50610511613a81565b348015610fb557600080fd5b5061068860048036036040811015610fcc57600080fd5b506001600160a01b0381358116916020013516613aa0565b348015610ff057600080fd5b506106716004803603602081101561100757600080fd5b5035613abd565b34801561101a57600080fd5b506106886004803603604081101561103157600080fd5b506001600160a01b0381358116916020013516613b1f565b34801561105557600080fd5b506106716004803603604081101561106c57600080fd5b506001600160a01b038135169060200135613b3c565b34801561108e57600080fd5b50610671600480360360408110156110a557600080fd5b506001600160a01b038135169060200135613dc5565b3480156110c757600080fd5b506105bf600480360360408110156110de57600080fd5b506001600160a01b038135169060200135613eb3565b34801561110057600080fd5b506106716004803603602081101561111757600080fd5b50356001600160a01b0316613ec9565b34801561113357600080fd5b506105bf6004803603602081101561114a57600080fd5b50356001600160a01b0316613f40565b34801561116657600080fd5b50610c87613f55565b34801561117b57600080fd5b506106886004803603602081101561119257600080fd5b50356001600160a01b0316613fb5565b3480156111ae57600080fd5b50610671600480360360208110156111c557600080fd5b50356001600160a01b0316614019565b3480156111e157600080fd5b50610688600480360360608110156111f857600080fd5b506001600160a01b038135811691602081013582169160409091013516614145565b34801561122657600080fd5b50610671600480360360c081101561123d57600080fd5b506001600160a01b038135169060208101359060408101359060ff6060820135169060808101359060a00135614168565b34801561127a57600080fd5b506106716004803603602081101561129157600080fd5b50356001600160a01b03166143a6565b3480156112ad57600080fd5b506106886144fc565b3480156112c257600080fd5b50610671600480360360408110156112d957600080fd5b506001600160a01b038135169060200135614501565b3480156112fb57600080fd5b506106886004803603602081101561131257600080fd5b50356001600160a01b03166145c7565b34801561132e57600080fd5b50610671600480360360e081101561134557600080fd5b506001600160a01b03813581169160208101359091169060408101359060608101359060ff6080820135169060a08101359060c001356145d9565b34801561138c57600080fd5b50610671600480360360408110156113a357600080fd5b506001600160a01b03813516906020013561487d565b3480156113c557600080fd5b50610688600480360360208110156113dc57600080fd5b50356001600160a01b03166149e1565b3480156113f857600080fd5b506106716004803603602081101561140f57600080fd5b50356001600160a01b03166149f3565b34801561142b57600080fd5b506106886004803603604081101561144257600080fd5b506001600160a01b0381358116916020013516614a74565b34801561146657600080fd5b506106716004803603604081101561147d57600080fd5b506001600160a01b038135169060200135614a9f565b34801561149f57600080fd5b50610688600480360360408110156114b657600080fd5b506001600160a01b0381358116916020013516614b6a565b3480156114da57600080fd5b50610688600480360360608110156114f157600080fd5b506001600160a01b038135811691602081013582169160409091013516614b87565b34801561151f57600080fd5b506106886004803603602081101561153657600080fd5b50356001600160a01b0316614baa565b34801561155257600080fd5b506106716004803603606081101561156957600080fd5b506001600160a01b03813581169160208101359091169060400135614bbc565b34801561159557600080fd5b50610688614d0d565b3480156115aa57600080fd5b506105bf600480360360208110156115c157600080fd5b50356001600160a01b0316614d31565b3480156115dd57600080fd5b50610688614d46565b3480156115f257600080fd5b506105e86004803603602081101561160957600080fd5b5035614d4c565b34801561161c57600080fd5b5061164f6004803603604081101561163357600080fd5b5080356001600160a01b0316906020013563ffffffff16614d59565b6040805163ffffffff909316835260208301919091528051918290030190f35b34801561167b57600080fd5b506105e8614d86565b34801561169057600080fd5b50610671600480360360208110156116a757600080fd5b50356001600160a01b0316614d95565b3480156116c357600080fd5b506105bf600480360360a08110156116da57600080fd5b506001600160a01b03813581169160208101359091169060408101359060608101359060800135614e3f565b34801561171257600080fd5b506105bf6004803603602081101561172957600080fd5b50356001600160a01b0316614ef0565b34801561174557600080fd5b506106886004803603606081101561175c57600080fd5b506001600160a01b038135811691602081013582169160409091013516614f05565b34801561178a57600080fd5b50610c87614f28565b604051806040016040528060088152602001674b6565706572466960c01b81525081565b3360008181526006602090815260408083206001600160a01b038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a35060015b92915050565b6001546001600160a01b031681565b601f818154811061183a57fe5b6000918252602090912001546001600160a01b0316905081565b336000908152601b602090815260408083206001600160a01b0387811685529083528184209086168452909152902054156118cf576040805162461bcd60e51b815260206004820152601660248201527518dc99591a5d0e881c195b991a5b99c818dc99591a5d60521b604482015290519081900360640190fd5b6118dc4262112380614f88565b3360008181526017602090815260408083206001600160a01b038981168086529184528285209089168086529084528285209690965593835260188252808320938352928152828220938252929092529020546119399082614f88565b3360008181526018602090815260408083206001600160a01b03898116808652918452828520908916808652818552838620889055958552601684528285209185529083528184209484529382529091205491905210156119cb5760405162461bcd60e51b815260040180806020018281038252602a815260200180615f31602a913960400191505060405180910390fd5b6040805163cbc3ab5360e01b81526001600160a01b0385166004820152306024820152905160009173086a5f76b56e96581942912d079b2add7f2f3e929163cbc3ab5391604480820192602092909190829003018186803b158015611a2f57600080fd5b505af4158015611a43573d6000803e3d6000fd5b505050506040513d6020811015611a5957600080fd5b5051604080516318160ddd60e01b81529051919250600091611ae2916001600160a01b038816916318160ddd91600480820192602092909190829003018186803b158015611aa657600080fd5b505afa158015611aba573d6000803e3d6000fd5b505050506040513d6020811015611ad057600080fd5b5051611adc8486614fcb565b90615023565b6001600160a01b0385166000908152601560209081526040808320308452909152902054909150811115611b68576001600160a01b038416600090815260156020908152604080832030808552925290912054611b3f919061504e565b6001600160a01b0384166000908152601560209081526040808320308452909152812055611bc5565b611b72308261504e565b6001600160a01b0384166000908152601560209081526040808320308452909152902054611ba0908261514f565b6001600160a01b03851660009081526015602090815260408083203084529091529020555b336001600160a01b0316856001600160a01b0316856001600160a01b03167f6d962fe34dd0cf9a9df3e12a7b8ddfe5f790b3f11668553455d7b52db70a07be4387604051808381526020018281526020019250505060405180910390a45050505050565b7f000000000000000000000000000000000000000000000000000000000000000081565b60025481565b601b60209081526000938452604080852082529284528284209052825290205481565b60136020526000908152604090205481565b6023818154811061183a57fe5b336000908152601d602052604090205460ff1615611cf2576040805162461bcd60e51b81526020600482015260156024820152741858dd1a5d985d194e88189b1858dadb1a5cdd1959605a1b604482015290519081900360640190fd5b3360009081526009602090815260408083206001600160a01b038516845290915290205415801590611d4657503360009081526009602090815260408083206001600160a01b038516845290915290205442115b611d8b576040805162461bcd60e51b815260206004820152601160248201527061637469766174653a20626f6e64696e6760781b604482015290519081900360640190fd5b611d95338261517a565b50565b6201518081565b60005a6024556001600160a01b0385166000908152601c602052604090205460ff168015611e0457506001600160a01b0385166000908152600e6020908152604080832054600d8352818420308552909252909120548591611e019190614f88565b10155b8015611e2857506001600160a01b0385166000908152601360205260409020548311155b8015611e5857506001600160a01b0385166000908152601060205260409020548290611e5590429061514f565b10155b95945050505050565b7f797cfab58fcb15f590eb8e4252d5c228ff88f94f907e119e80c4393a946e8f3581565b3360009081526014602052604090205460ff16611ed9576040805162461bcd60e51b815260206004820152600d60248201526c3932b1b2b4b83a1d1010b537b160991b604482015290519081900360640190fd5b604080518082018252601d81527f776f726b526563656970743a20696e7375666669656e742066756e647300000060208083019190915233600090815260158252838120600e82529091529190912054611f349183906152c8565b336000908152601560209081526040808320600e84528252808320939093556001600160a01b0385168083526012909152828220429055915183156108fc0291849190818181858888f19350505050158015611f94573d6000803e3d6000fd5b50604080514381526020810183905281516001600160a01b038516923392600e927f3cda93551ad083704be19fabbd7c3eb94d88f6e72ff221bdea9017e52e4144e8929181900390910190a45050565b6021546001600160a01b03163314612043576040805162461bcd60e51b815260206004820152601d60248201527f616363657074476f7665726e616e63653a202170656e64696e67476f76000000604482015290519081900360640190fd5b602154602080546001600160a01b0319166001600160a01b03909216919091179055565b6001600160a01b0383166000818152600660209081526040808320338085529252822054919290919082148015906120a157506000198114155b156121325760006120cd85604051806060016040528060278152602001615f7b602791398491906152c8565b6001600160a01b0380891660008181526006602090815260408083209489168084529482529182902085905581518581529151949550929391927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92592918290030190a3505b61213d86868661535f565b50600195945050505050565b7f5fae9ec55a1e547936e0e74d606b44cd5f912f9adcd0bba561fea62d570259e981565b601281565b600960209081526000928352604080842090915290825290205481565b601c6020526000908152604090205460ff1681565b60146020526000908152604090205460ff1681565b611d95338261504e565b6001600160a01b03821660009081526022602052604090205460ff1661222b576040805162461bcd60e51b815260206004820152601860248201527730b2322634b8bab4b234ba3caa37a537b11d1010b830b4b960411b604482015290519081900360640190fd5b6001600160a01b038084166000908152601a60209081526040808320868516845282528083209385168352929052205461229e576040805162461bcd60e51b815260206004820152600f60248201526e18dc99591a5d0e881b9bc8189bdb99608a1b604482015290519081900360640190fd5b6001600160a01b038084166000908152601a6020908152604080832086851684528252808320938516835292905220544211612313576040805162461bcd60e51b815260206004820152600f60248201526e6372656469743a20626f6e64696e6760881b604482015290519081900360640190fd5b6040805163cbc3ab5360e01b81526001600160a01b0384166004820152306024820152905160009173086a5f76b56e96581942912d079b2add7f2f3e929163cbc3ab5391604480820192602092909190829003018186803b15801561237757600080fd5b505af415801561238b573d6000803e3d6000fd5b505050506040513d60208110156123a157600080fd5b5051604080516318160ddd60e01b81529051919250600091612455916001600160a01b038716916318160ddd91600480820192602092909190829003018186803b1580156123ee57600080fd5b505afa158015612402573d6000803e3d6000fd5b505050506040513d602081101561241857600080fd5b50516001600160a01b038088166000908152601b602090815260408083208a85168452825280832093891683529290522054611adc908590614fcb565b9050612461308261551c565b6001600160a01b038316600090815260156020908152604080832030845290915290205461248f9082614f88565b6001600160a01b038085166000818152601560209081526040808320308452825280832095909555898416808352601b8252858320948a168084529482528583208484528252858320929092558451438152908101869052845191947fa90666688fb32254f45a367c38fbcd5f2664432b061a4354d9d3c9a7abcbec5b92918290030190a45050505050565b600f5481565b3360009081526014602052604090205460ff16612579576040805162461bcd60e51b81526020600482015260116024820152703bb7b935a932b1b2b4b83a1d1010b537b160791b604482015290519081900360640190fd5b6001546001600160a01b031663525ea6316125975a6024549061514f565b6040518263ffffffff1660e01b81526004018082815260200191505060206040518083038186803b1580156125cb57600080fd5b505afa1580156125df573d6000803e3d6000fd5b505050506040513d60208110156125f557600080fd5b5051811115612644576040805162461bcd60e51b81526020600482015260166024820152751ddbdc9ad49958d95a5c1d0e881b585e081b1a5b5a5d60521b604482015290519081900360640190fd5b604080518082018252601d81527f776f726b526563656970743a20696e7375666669656e742066756e647300000060208083019190915233600090815260158252838120308252909152919091205461269e9183906152c8565b3360009081526015602090815260408083203084528252808320939093556001600160a01b038516825260129052204290556126da8282615595565b6001600160a01b0382166000908152601360205260409020546126fd9082614f88565b6001600160a01b03831660008181526013602090815260409182902093909355805143815292830184905280519192339230927f3cda93551ad083704be19fabbd7c3eb94d88f6e72ff221bdea9017e52e4144e8928290030190a45050565b600260005414156127a2576040805162461bcd60e51b815260206004820152601f6024820152600080516020615f11833981519152604482015290519081900360640190fd5b60026000908155338152600a602090815260408083206001600160a01b0385168452909152902054158015906127fa5750336000908152600a602090815260408083206001600160a01b038516845290915290205442115b612841576040805162461bcd60e51b815260206004820152601360248201527277697468647261773a20756e626f6e64696e6760681b604482015290519081900360640190fd5b3360009081526011602052604090205460ff161561289b576040805162461bcd60e51b815260206004820152601260248201527177697468647261773a20646973707574657360701b604482015290519081900360640190fd5b6001600160a01b0381163014156128e057336000818152600b602090815260408083206001600160a01b03861684529091529020546128db91309161535f565b61290f565b336000818152600b602090815260408083206001600160a01b03861680855292529091205461290f929061564e565b336000818152600b602090815260408083206001600160a01b038616845282529182902054825143815242928101929092528183015290517f095ae150bb74a0755c30809eb8d4aa810b63b66b9ca96a1945bbb03d809df2e99181900360600190a2336000908152600b602090815260408083206001600160a01b0394909416835292905290812081905560019055565b600260005414156129e6576040805162461bcd60e51b815260206004820152601f6024820152600080516020615f11833981519152604482015290519081900360640190fd5b600260009081556001600160a01b03841681526022602052604090205460ff16612a52576040805162461bcd60e51b815260206004820152601860248201527730b2322634b8bab4b234ba3caa37a537b11d1010b830b4b960411b604482015290519081900360640190fd5b612a676001600160a01b0384163330846156a5565b3360009081526016602090815260408083206001600160a01b0387811685529083528184209086168452909152902054612aa19082614f88565b3360009081526016602090815260408083206001600160a01b0388811685529083528184209087168452909152902055612ade4262015180614f88565b336000818152601a602090815260408083206001600160a01b0389811680865291845282852090891680865290845282852096909655938352601b825280832093835292815282822093825292909252902054612b3b9082614f88565b336000908152601b602090815260408083206001600160a01b038881168552908352818420908716845282528083209390935560149052205460ff16158015612b9b57506001600160a01b03821660009081526019602052604090205442115b15612c36576020546040805163dc380cbb60e01b81526001600160a01b0385811660048301529151919092169163dc380cbb91602480830192600092919082900301818387803b158015612bee57600080fd5b505af1158015612c02573d6000803e3d6000fd5b50505050612c1c6211238042614f8890919063ffffffff16565b6001600160a01b0383166000908152601960205260409020555b336001600160a01b0316836001600160a01b0316836001600160a01b03167fe1cb44a16adbd63a44f65c279b23b8f447b2c6e120a2bc7f004758b446e05ed14385604051808381526020018281526020019250505060405180910390a45050600160005550565b6020546001600160a01b03163314612cec576040805162461bcd60e51b815260206004820152600d60248201526c3932b9b7b63b329d1010b3b7bb60991b604482015290519081900360640190fd5b6001600160a01b038116600081815260116020908152604091829020805460ff19169055815143815291517f7574a4a2c81b3099d59aaf15526ea966e1e2886afd21bf4a350af7af22db3a709281900390910190a250565b6003602052600090815260409020546001600160a01b031681565b6020546001600160a01b031681565b611d953382615705565b600154611d959082906001600160a01b031663525ea631612d9c5a6024549061514f565b6040518263ffffffff1660e01b81526004018082815260200191505060206040518083038186803b158015612dd057600080fd5b505afa158015612de4573d6000803e3d6000fd5b505050506040513d6020811015612dfa57600080fd5b5051612521565b6211238081565b3360009081526017602090815260408083206001600160a01b0386811685529083528184209085168452909152902054612e7d576040805162461bcd60e51b81526020600482015260116024820152701c995b5bdd99529bd88e881d5b989bdb99607a1b604482015290519081900360640190fd5b3360009081526017602090815260408083206001600160a01b03868116855290835281842090851684529091529020544211612ef7576040805162461bcd60e51b815260206004820152601460248201527372656d6f76654a6f623a20756e626f6e64696e6760601b604482015290519081900360640190fd5b3360008181526018602090815260408083206001600160a01b038781168086529184528285209087168086529084528285205495855260168452828520918552908352818420908452909152902054612f50908261514f565b3360008181526016602090815260408083206001600160a01b038981168086529184528285209089168086529084528285209690965584845260188352818420818552835281842095845294909152812055612fad91908361564e565b336001600160a01b0316836001600160a01b0316836001600160a01b03167fb69fc9f6d19ed402461251491f86c736bfcbe966e9584d3fb8a0057b313b69204385604051808381526020018281526020019250505060405180910390a4505050565b601560209081526000928352604080842090915290825290205481565b6020546001600160a01b03163314613083576040805162461bcd60e51b81526020600482015260156024820152743932bb37b5b2a634b8bab4b234ba3c9d1010b3b7bb60591b604482015290519081900360640190fd5b6001600160a01b03166000908152602260205260409020805460ff19169055565b600b60209081526000928352604080842090915290825290205481565b6060601f80548060200260200160405190810160405280929190818152602001828054801561311957602002820191906000526020600020905b81546001600160a01b031681526001909101906020018083116130fb575b5050505050905090565b60005a602455506001600160a01b03166000908152601c602052604090205460ff1690565b6001600160a01b03811660009081526014602052604090205460ff166131aa576040805162461bcd60e51b815260206004820152601260248201527130b23221b932b234ba22aa241d1010b537b160711b604482015290519081900360640190fd5b60006131bd612710611adc346032614fcb565b90506131f76131cc348361514f565b6001600160a01b0384166000908152601560209081526040808320600e845290915290205490614f88565b6001600160a01b038084166000908152601560209081526040808320600e8452825280832094909455549251929091169183156108fc0291849190818181858888f1935050505015801561324f573d6000803e3d6000fd5b5060408051438152346020820152815133926001600160a01b03861692600e927fb97975ea9bf5ae2173b9ea765214622396032aba11cd5cc1450c760ac80d059a929181900390910190a45050565b60056020526000908152604090205463ffffffff1681565b6001600160a01b031660009081526007602052604090205490565b6020546001600160a01b0316331461331e576040805162461bcd60e51b815260206004820152600b60248201526a39b630b9b41d1010b3b7bb60a91b604482015290519081900360640190fd5b6001600160a01b0381166000908152601c60209081526040808320805460ff19908116909155601d835281842080549091166001179055600d825280832030808552925290912054611d9591908390614bbc565b60196020526000908152604090205481565b60004382106133cb576040805162461bcd60e51b815260206004820152600e60248201526d33b2ba283934b7b92b37ba32b99d60911b604482015290519081900360640190fd5b6001600160a01b03831660009081526005602052604090205463ffffffff16806133f9576000915050611818565b6001600160a01b038416600090815260046020908152604080832063ffffffff600019860181168552925290912054168310613468576001600160a01b03841660009081526004602090815260408083206000199490940163ffffffff16835292905220600101549050611818565b6001600160a01b038416600090815260046020908152604080832083805290915290205463ffffffff168310156134a3576000915050611818565b600060001982015b8163ffffffff168163ffffffff16111561355c57600282820363ffffffff160481036134d5615ef9565b506001600160a01b038716600090815260046020908152604080832063ffffffff808616855290835292819020815180830190925280549093168082526001909301549181019190915290871415613537576020015194506118189350505050565b805163ffffffff1687111561354e57819350613555565b6001820392505b50506134ab565b506001600160a01b038516600090815260046020908152604080832063ffffffff9094168352929052206001015491505092915050565b60086020526000908152604090205481565b6020546001600160a01b031633146135f6576040805162461bcd60e51b815260206004820152600f60248201526e3932b6b7bb32a537b11d1010b3b7bb60891b604482015290519081900360640190fd5b6001600160a01b038116600081815260146020908152604091829020805460ff191690558151438152339181019190915281517f2ca18fdfae50f1042480d285d21f6706aa6abbd567d60a044b5bec07ccfee648929181900390910190a250565b600e81565b601860209081526000938452604080852082529284528284209052825290205481565b600260005414156136c5576040805162461bcd60e51b815260206004820152601f6024820152600080516020615f11833981519152604482015290519081900360640190fd5b600260009081556001600160a01b03831681526014602052604090205460ff1661372b576040805162461bcd60e51b815260206004820152601260248201527130b23221b932b234ba22aa241d1010b537b160711b604482015290519081900360640190fd5b6000836001600160a01b03166370a08231306040518263ffffffff1660e01b815260040180826001600160a01b0316815260200191505060206040518083038186803b15801561377a57600080fd5b505afa15801561378e573d6000803e3d6000fd5b505050506040513d60208110156137a457600080fd5b505190506137bd6001600160a01b0385163330856156a5565b600061384282866001600160a01b03166370a08231306040518263ffffffff1660e01b815260040180826001600160a01b0316815260200191505060206040518083038186803b15801561381057600080fd5b505afa158015613824573d6000803e3d6000fd5b505050506040513d602081101561383a57600080fd5b50519061514f565b90506000613857612710611adc846032614fcb565b9050613892613866838361514f565b6001600160a01b038088166000908152601560209081526040808320938c168352929052205490614f88565b6001600160a01b0380871660009081526015602090815260408083208b851680855290835292209390935591546138cb9291168361564e565b336001600160a01b0316856001600160a01b0316876001600160a01b03167fb97975ea9bf5ae2173b9ea765214622396032aba11cd5cc1450c760ac80d059a4386604051808381526020018281526020019250505060405180910390a45050600160005550505050565b3360009081526014602052604090205460ff16613989576040805162461bcd60e51b815260206004820152600d60248201526c3932b1b2b4b83a1d1010b537b160991b604482015290519081900360640190fd5b604080518082018252601d81527f776f726b526563656970743a20696e7375666669656e742066756e6473000000602080830191909152336000908152601582528381206001600160a01b038816825290915291909120546139ec9183906152c8565b3360009081526015602090815260408083206001600160a01b0388811680865291845282852095909555938616835260129091529020429055613a3090838361564e565b604080514381526020810183905281516001600160a01b03808616933393918816927f3cda93551ad083704be19fabbd7c3eb94d88f6e72ff221bdea9017e52e4144e89281900390910190a4505050565b604051806040016040528060038152602001624b464960e81b81525081565b600a60209081526000928352604080842090915290825290205481565b6020546001600160a01b03163314613b09576040805162461bcd60e51b815260206004820152600a60248201526936b4b73a1d1010b3b7bb60b11b604482015290519081900360640190fd5b602054611d95906001600160a01b03168261551c565b600d60209081526000928352604080842090915290825290205481565b60026000541415613b82576040805162461bcd60e51b815260206004820152601f6024820152600080516020615f11833981519152604482015290519081900360640190fd5b60026000908155338152601d602052604090205460ff1615613bdf576040805162461bcd60e51b8152602060048201526011602482015270189bdb990e88189b1858dadb1a5cdd1959607a1b604482015290519081900360640190fd5b613bec4262015180614f88565b3360009081526009602090815260408083206001600160a01b038716808552925290912091909155301415613c2b57613c2633308361535f565b613d12565b6000826001600160a01b03166370a08231306040518263ffffffff1660e01b815260040180826001600160a01b0316815260200191505060206040518083038186803b158015613c7a57600080fd5b505afa158015613c8e573d6000803e3d6000fd5b505050506040513d6020811015613ca457600080fd5b50519050613cbd6001600160a01b0384163330856156a5565b613d0e81846001600160a01b03166370a08231306040518263ffffffff1660e01b815260040180826001600160a01b0316815260200191505060206040518083038186803b15801561381057600080fd5b9150505b336000908152600c602090815260408083206001600160a01b0386168452909152902054613d409082614f88565b336000818152600c602090815260408083206001600160a01b03881680855290835281842095909555838352600982528083209483529381529083902054835143815291820152808301849052915190917fa150b7ad789014c0171a2873708daadbdbf87457d90d3896eaf0907e5b225ae4919081900360600190a250506001600055565b613dd24262112380614f88565b336000818152600a602090815260408083206001600160a01b0388168452909152902091909155613e05908390836157b4565b336000908152600b602090815260408083206001600160a01b0386168452909152902054613e339082614f88565b336000818152600b602090815260408083206001600160a01b03881680855290835281842095909555838352600a82528083209483529381529083902054835143815291820152808301849052915190917f50eca01e7e4362bc0279a45c4fbe68f263771dd3418b0a29c93008759f433b2e919081900360600190a25050565b6000613ec033848461535f565b50600192915050565b6020546001600160a01b03163314613f1e576040805162461bcd60e51b815260206004820152601360248201527239b2ba23b7bb32b93730b731b29d1010b3b7bb60691b604482015290519081900360640190fd5b602180546001600160a01b0319166001600160a01b0392909216919091179055565b60116020526000908152604090205460ff1681565b6060601e805480602002602001604051908101604052809291908181526020018280548015613119576020028201919060005260206000209081546001600160a01b031681526001909101906020018083116130fb575050505050905090565b6001600160a01b03811660009081526005602052604081205463ffffffff1680613fe0576000614012565b6001600160a01b038316600090815260046020908152604080832063ffffffff60001986011684529091529020600101545b9392505050565b6020546001600160a01b03163314614071576040805162461bcd60e51b815260206004820152601660248201527530b8383937bb32a634b8bab4b234ba3c9d1010b3b7bb60511b604482015290519081900360640190fd5b6001600160a01b03811660009081526022602052604090205460ff16156140df576040805162461bcd60e51b815260206004820152601760248201527f617070726f76654c69717569646974793a202170616972000000000000000000604482015290519081900360640190fd5b6001600160a01b03166000818152602260205260408120805460ff191660019081179091556023805491820181559091527fd57b2b5166478fd4318d2acc6cc2c704584312bdd8781b32d5d06abda57f42300180546001600160a01b0319169091179055565b601760209081526000938452604080852082529284528284209052825290205481565b604080517f1ac861a6a8532f3704e1768564a53a32774f00d6cf20ccbbdf60ab61378302bc6020808301919091526001600160a01b038916828401526060820188905260808083018890528351808403909101815260a08301845280519082012061190160f01b60c08401527f000000000000000000000000000000000000000000000000000000000000000060c284015260e2808401829052845180850390910181526101028401808652815191840191909120600091829052610122850180875281905260ff891661014286015261016285018890526101828501879052945191949390926001926101a280840193601f198301929081900390910190855afa15801561427b573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b0381166142d8576040805162461bcd60e51b815260206004820152601260248201527164656c656761746542795369673a2073696760701b604482015290519081900360640190fd5b6001600160a01b03811660009081526008602052604090208054600181019091558814614343576040805162461bcd60e51b815260206004820152601460248201527364656c656761746542795369673a206e6f6e636560601b604482015290519081900360640190fd5b86421115614391576040805162461bcd60e51b815260206004820152601660248201527519195b1959d85d19509e54da59ce88195e1c1a5c995960521b604482015290519081900360640190fd5b61439b818a615705565b505050505050505050565b6020546001600160a01b031633146143f4576040805162461bcd60e51b815260206004820152600c60248201526b30b2322537b11d1010b3b7bb60a11b604482015290519081900360640190fd5b6001600160a01b03811660009081526014602052604090205460ff1615614456576040805162461bcd60e51b815260206004820152601160248201527030b2322537b11d103537b11035b737bbb760791b604482015290519081900360640190fd5b6001600160a01b0381166000818152601460209081526040808320805460ff19166001908117909155601f805491820181559093527fa03837a25210ee280c2113ff4b77ca23440b19d4866cca721c801278fd08d80790920180546001600160a01b031916841790558151438152339181019190915281517f3d9884fbd11fce9188657c4bcfda7491d3316ce97bd234d981b7be1f012a852f929181900390910190a250565b603281565b6020546001600160a01b03163314614551576040805162461bcd60e51b815260206004820152600e60248201526d30b2322b37ba32b99d1010b3b7bb60911b604482015290519081900360640190fd5b6001600160a01b0382166000908152600e6020526040902054614574908261514f565b6001600160a01b0383166000908152600e6020526040902055600f5461459a908261514f565b600f556001600160a01b038083166000908152600360205260408120546145c392169083615849565b5050565b60126020526000908152604090205481565b6001600160a01b0380881660008181526008602090815260408083208054600180820190925582517f5fae9ec55a1e547936e0e74d606b44cd5f912f9adcd0bba561fea62d570259e98186015280840196909652958c166060860152608085018b905260a085019590955260c08085018a90528151808603909101815260e08501825280519083012061190160f01b6101008601527f000000000000000000000000000000000000000000000000000000000000000061010286015261012280860182905282518087039091018152610142860180845281519185019190912090859052610162860180845281905260ff8a166101828701526101a286018990526101c2860188905291519095919491926101e2808401939192601f1981019281900390910190855afa158015614714573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116614770576040805162461bcd60e51b81526020600482015260116024820152707065726d69743a207369676e617475726560781b604482015290519081900360640190fd5b896001600160a01b0316816001600160a01b0316146147cd576040805162461bcd60e51b81526020600482015260146024820152731c195c9b5a5d0e881d5b985d5d1a1bdc9a5e995960621b604482015290519081900360640190fd5b86421115614814576040805162461bcd60e51b815260206004820152600f60248201526e1c195c9b5a5d0e88195e1c1a5c9959608a1b604482015290519081900360640190fd5b6001600160a01b03808b166000818152600660209081526040808320948e16808452948252918290208c905581518c815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a350505050505050505050565b6020546001600160a01b031633146148d1576040805162461bcd60e51b815260206004820152601260248201527130b23225a82921b932b234ba1d1010b3b7bb60711b604482015290519081900360640190fd5b6001600160a01b03821660009081526014602052604090205460ff16614933576040805162461bcd60e51b815260206004820152601260248201527130b23225a82921b932b234ba1d1010b537b160711b604482015290519081900360640190fd5b6001600160a01b03821660009081526015602090815260408083203084529091529020546149619082614f88565b6001600160a01b038316600090815260156020908152604080832030808552925290912091909155614993908261551c565b6040805143815260208101839052815133926001600160a01b0386169230927fb97975ea9bf5ae2173b9ea765214622396032aba11cd5cc1450c760ac80d059a929181900390910190a45050565b600e6020526000908152604090205481565b6020546001600160a01b03163314614a52576040805162461bcd60e51b815260206004820152601760248201527f7365744b6565706572466948656c7065723a2021676f76000000000000000000604482015290519081900360640190fd5b600180546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205490565b6020546001600160a01b03163314614aef576040805162461bcd60e51b815260206004820152600e60248201526d30b2322b37ba32b99d1010b3b7bb60911b604482015290519081900360640190fd5b614af9823061517a565b6001600160a01b0382166000908152600e6020526040902054614b1c9082614f88565b6001600160a01b0383166000908152600e6020526040902055600f54614b429082614f88565b600f556001600160a01b038083166000908152600360205260408120546145c3921683615849565b600c60209081526000928352604080842090915290825290205481565b601660209081526000938452604080852082529284528284209052825290205481565b60106020526000908152604090205481565b60026000541415614c02576040805162461bcd60e51b815260206004820152601f6024820152600080516020615f11833981519152604482015290519081900360640190fd5b60026000556020546001600160a01b03163314614c54576040805162461bcd60e51b815260206004820152600b60248201526a39b630b9b41d1010b3b7bb60a91b604482015290519081900360640190fd5b6001600160a01b038316301415614c8257602054614c7d9030906001600160a01b03168361535f565b614c9c565b602054614c9c906001600160a01b0385811691168361564e565b614ca78383836157b4565b6001600160a01b038216600081815260116020908152604091829020805460ff19169055815143815290810184905281513393927ff7e41ea76f0e7b22ba17dc4cc01fa75cff34ea24f5efe2874f5e175296259050928290030190a35050600160005550565b7f1ac861a6a8532f3704e1768564a53a32774f00d6cf20ccbbdf60ab61378302bc81565b60226020526000908152604090205460ff1681565b61271081565b601e818154811061183a57fe5b60046020908152600092835260408084209091529082529020805460019091015463ffffffff9091169082565b6021546001600160a01b031681565b6020546001600160a01b03163314614de4576040805162461bcd60e51b815260206004820152600d60248201526c3234b9b83aba329d1010b3b7bb60991b604482015290519081900360640190fd5b6001600160a01b038116600081815260116020908152604091829020805460ff19166001179055815143815291517ffb2bdfce35c242f34d4f9633225d3c34a5892d5eae9ce102de6aac188dd25ba09281900390910190a250565b60005a6024556001600160a01b0386166000908152601c602052604090205460ff168015614e9257506001600160a01b038087166000908152600d60209081526040808320938916835292905220548411155b8015614eb657506001600160a01b0386166000908152601360205260409020548311155b8015614ee657506001600160a01b0386166000908152601060205260409020548290614ee390429061514f565b10155b9695505050505050565b601d6020526000908152604090205460ff1681565b601a60209081526000938452604080852082529284528284209052825290205481565b60606023805480602002602001604051908101604052809291908181526020018280548015613119576020028201919060005260206000209081546001600160a01b031681526001909101906020018083116130fb575050505050905090565b600082820183811015614012576040805162461bcd60e51b81526020600482015260066024820152656164643a202b60d01b604482015290519081900360640190fd5b600082614fda57506000611818565b82820282848281614fe757fe5b0414614012576040805162461bcd60e51b815260206004820152600660248201526536bab61d101560d11b604482015290519081900360640190fd5b60006140128383604051806040016040528060068152602001656469763a202f60d01b8152506159c7565b6001600160a01b03821661509f576040805162461bcd60e51b81526020600482015260136024820152725f6275726e3a207a65726f206164647265737360681b604482015290519081900360640190fd5b60408051808201825260168152755f6275726e3a20657863656564732062616c616e636560501b6020808301919091526001600160a01b0385166000908152600790915291909120546150f39183906152c8565b6001600160a01b038316600090815260076020526040902055600254615119908261514f565b6002556040805182815290516000916001600160a01b03851691600080516020615f5b8339815191529181900360200190a35050565b60006140128383604051806040016040528060068152602001657375623a202d60d01b8152506152c8565b6001600160a01b0382166000908152601060205260409020546151ff576001600160a01b03821660008181526010602090815260408083204290819055601e8054600181019091557f50bb669a95c7b50b7e8a6f09454034b2b14cf2b85c730dca9a539ca82cb6e3500180546001600160a01b03191690951790945560129091529020555b6001600160a01b038083166000908152601c60209081526040808320805460ff19166001179055600c8252808320938516835292905220546152449082908490615a2c565b6001600160a01b038083166000818152600c60209081526040808320948616808452948252808320839055838352600d825280832094835293815290839020548351438152429281019290925281840152915190917f3d80dd4660c08288217e88c2d45230220fcd3debf16898013243026e6a2aad05919081900360600190a25050565b600081848411156153575760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561531c578181015183820152602001615304565b50505050905090810190601f1680156153495780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6001600160a01b0383166153ba576040805162461bcd60e51b815260206004820152601d60248201527f5f7472616e73666572546f6b656e733a207a65726f2061646472657373000000604482015290519081900360640190fd5b6001600160a01b038216615415576040805162461bcd60e51b815260206004820152601d60248201527f5f7472616e73666572546f6b656e733a207a65726f2061646472657373000000604482015290519081900360640190fd5b60408051808201825260208082527f5f7472616e73666572546f6b656e733a20657863656564732062616c616e6365818301526001600160a01b03861660009081526007909152919091205461546c9183906152c8565b6001600160a01b0380851660009081526007602081815260408084209590955584518086018652601a81527f5f7472616e73666572546f6b656e733a206f766572666c6f77730000000000008183015293871683525291909120546154d2918390615ac4565b6001600160a01b038084166000818152600760209081526040918290209490945580518581529051919392871692600080516020615f5b83398151915292918290030190a3505050565b6002546155299082614f88565b6002556001600160a01b03821660009081526007602052604090205461554f9082614f88565b6001600160a01b0383166000818152600760209081526040808320949094558351858152935192939192600080516020615f5b8339815191529281900390910190a35050565b6001600160a01b0382166000908152600d602090815260408083203084529091529020546155c39082614f88565b6001600160a01b0383166000908152600d60209081526040808320308452909152902055600f546155f49082614f88565b600f556001600160a01b0380831660009081526003602052604081205461561c921683615849565b6040805182815290516001600160a01b038416913391600080516020615f5b8339815191529181900360200190a35050565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b1790526156a0908490615b22565b505050565b604080516001600160a01b0380861660248301528416604482015260648082018490528251808303909101815260849091019091526020810180516001600160e01b03166323b872dd60e01b1790526156ff908590615b22565b50505050565b6001600160a01b03808316600081815260036020908152604080832054600d8352818420308552835281842054948452600e909252822054931692909161574c9190614f88565b6001600160a01b0385811660008181526003602052604080822080546001600160a01b031916898616908117909155905194955093928616927f3134e8a2e6d97e929a7e54011ea5485d7d196dd5f0ba4d4ef95803e8e3fc257f9190a46156ff828483615849565b6001600160a01b038083166000908152600d60209081526040808320938716835292905220546157e4908261514f565b6001600160a01b038084166000908152600d60209081526040808320938816808452939091529020919091553014156156a057600f54615824908261514f565b600f556001600160a01b038083166000908152600360205260408120546156a0921690835b816001600160a01b0316836001600160a01b03161415801561586b5750600081115b156156a0576001600160a01b03831615615936576001600160a01b03831660009081526005602052604081205463ffffffff1690816158ab5760006158dd565b6001600160a01b038516600090815260046020908152604080832063ffffffff60001987011684529091529020600101545b9050600061592484604051806040016040528060168152602001755f6d6f7665566f7465733a20756e646572666c6f777360501b815250846152c89092919063ffffffff16565b905061593286848484615cdd565b5050505b6001600160a01b038216156156a0576001600160a01b03821660009081526005602052604081205463ffffffff1690816159715760006159a3565b6001600160a01b038416600090815260046020908152604080832063ffffffff60001987011684529091529020600101545b905060006159b18285614f88565b90506159bf85848484615cdd565b505050505050565b60008183615a165760405162461bcd60e51b815260206004820181815283516024840152835190928392604490910191908501908083836000831561531c578181015183820152602001615304565b506000838581615a2257fe5b0495945050505050565b6001600160a01b038083166000908152600d6020908152604080832093871683529290522054615a5c9082614f88565b6001600160a01b038084166000908152600d60209081526040808320938816808452939091529020919091553014156156a057600f54615a9c9082614f88565b600f556001600160a01b038083166000908152600360205260408120546156a0921683615849565b60008383018285821015615b195760405162461bcd60e51b815260206004820181815283516024840152835190928392604490910191908501908083836000831561531c578181015183820152602001615304565b50949350505050565b615b34826001600160a01b0316615e5f565b615b7c576040805162461bcd60e51b815260206004820152601460248201527314d85999515490cc8c0e880858dbdb9d1c9858dd60621b604482015290519081900360640190fd5b60006060836001600160a01b0316836040518082805190602001908083835b60208310615bba5780518252601f199092019160209182019101615b9b565b6001836020036101000a0380198251168184511680821785525050505050509050019150506000604051808303816000865af19150503d8060008114615c1c576040519150601f19603f3d011682016040523d82523d6000602084013e615c21565b606091505b509150915081615c78576040805162461bcd60e51b815260206004820181905260248201527f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564604482015290519081900360640190fd5b8051156156ff57808060200190516020811015615c9457600080fd5b50516156ff576040805162461bcd60e51b815260206004820152601360248201527214d85999515490cc8c0e88085cdd58d8d95959606a1b604482015290519081900360640190fd5b6000615d1e436040518060400160405280601981526020017f5f7772697465436865636b706f696e743a203332206269747300000000000000815250615e9b565b905060008463ffffffff16118015615d6757506001600160a01b038516600090815260046020908152604080832063ffffffff6000198901811685529252909120548282169116145b15615da4576001600160a01b038516600090815260046020908152604080832063ffffffff60001989011684529091529020600101829055615e15565b60408051808201825263ffffffff808416825260208083018681526001600160a01b038a166000818152600484528681208b8616825284528681209551865490861663ffffffff19918216178755925160019687015590815260059092529390208054928801909116919092161790555b604080518481526020810184905281516001600160a01b038816927fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a724928290030190a25050505050565b6000813f7fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470818114801590615e9357508115155b949350505050565b6000816401000000008410615ef15760405162461bcd60e51b815260206004820181815283516024840152835190928392604490910191908501908083836000831561531c578181015183820152602001615304565b509192915050565b60408051808201909152600080825260208201529056fe5265656e7472616e637947756172643a207265656e7472616e742063616c6c00756e626f6e644c697175696469747946726f6d4a6f623a20696e73756666696369656e742066756e6473ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef7472616e7366657246726f6d3a2065786365656473207370656e64657220616c6c6f77616e6365a26469706673582212209c51e0d18472a02cbb0eed7523cd50390b329ae6f9055df69d0b264349e9bdd564736f6c634300060c00330000000000000000000000005610eafe0ed5af17e57ad88b37c73a7162016f44

Deployed Bytecode

0x6080604052600436106104f75760003560e01c80637ecebe001161028c578063ce6a08801161015a578063e74f8239116100cc578063f39c38a011610085578063f39c38a01461166f578063f75f9f7b14611684578063f9d46cf2146116b7578063f9f92be414611706578063fede700814611739578063ffb0a4a01461177e576104f7565b8063e74f823914611546578063e7a324dc14611589578063eb421f3b1461159e578063ec342ad0146115d1578063ec4515dd146115e6578063f1127ed814611610576104f7565b8063db7f91831161011e578063db7f9183146113ec578063dd62ed3e1461141f578063de63298d1461145a578063deac354114611493578063def70844146114ce578063e326ac4314611513576104f7565b8063ce6a0880146112b6578063d454019d146112ef578063d505accf14611322578063d8ae6faf14611380578063d8bff5a5146113b9576104f7565b8063a5d059ca116101fe578063b600702a116101b7578063b600702a146111a2578063bb49096d146111d5578063c1c1d21814610784578063c3cda5201461121a578063c5198abc1461126e578063c57981b5146112a1576104f7565b8063a5d059ca14611082578063a9059cbb146110bb578063ab033ea9146110f4578063b0103b1a14611127578063b105e39f1461115a578063b4b5ea571461116f576104f7565b80638d9acd2e116102505780638d9acd2e14610f5157806395d89b4114610f945780639af7728414610fa9578063a0712d6814610fe4578063a39744b51461100e578063a515366a14611049576104f7565b80637ecebe0014610e4e5780638071198914610e815780638322fff214610eb457806383baa69314610ec957806388b4ac8314610f0e576104f7565b80634395d8ba116103c9578063603c68601161033b5780636dab5dcf116102f45780636dab5dcf14610d0a5780636fcfff4514610d3057806370a0823114610d7c57806374a8f10314610daf5780637724ff6814610de2578063782d6fe114610e15576104f7565b8063603c686014610b8e578063637cd7f014610bc957806364bb43ee14610c0457806367da318414610c3757806368581ebd14610c725780636ba42aaa14610cd7576104f7565b806355ea6c471161038d57806355ea6c4714610a98578063587cde1e14610acb5780635aa6e67514610afe5780635c19a95c14610b135780635feeb79414610b46578063603b4d1414610b79576104f7565b80634395d8ba1461098f57806344d96e95146109d45780634b3fde21146109e957806351cff8d914610a2257806352a4de2914610a55576104f7565b80631df0de131161046d57806330adf81f1161042657806330adf81f14610884578063313ce5671461089957806337feca84146108c45780633bbd64bc146108ff5780633d1f0bb91461093257806342966c6814610965576104f7565b80631df0de13146107845780631ff5f3da1461079957806320606b70146107de5780632119a62a146107f3578063238efcbc1461082c57806323b872dd14610841576104f7565b80631778e29c116104bf5780631778e29c1461067357806318160ddd1461069a5780631992d206146106af5780631b44555e146106f45780631b7a1fb2146107275780631c5a9d9c14610751576104f7565b806306fdde03146104fc578063095ea7b31461058657806309aff02b146105d35780630c33c522146106045780631101eb411461062e575b600080fd5b34801561050857600080fd5b50610511611793565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561054b578181015183820152602001610533565b50505050905090810190601f1680156105785780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561059257600080fd5b506105bf600480360360408110156105a957600080fd5b506001600160a01b0381351690602001356117b7565b604080519115158252519081900360200190f35b3480156105df57600080fd5b506105e861181e565b604080516001600160a01b039092168252519081900360200190f35b34801561061057600080fd5b506105e86004803603602081101561062757600080fd5b503561182d565b34801561063a57600080fd5b506106716004803603606081101561065157600080fd5b506001600160a01b03813581169160208101359091169060400135611854565b005b34801561067f57600080fd5b50610688611c29565b60408051918252519081900360200190f35b3480156106a657600080fd5b50610688611c4d565b3480156106bb57600080fd5b50610688600480360360608110156106d257600080fd5b506001600160a01b038135811691602081013582169160409091013516611c53565b34801561070057600080fd5b506106886004803603602081101561071757600080fd5b50356001600160a01b0316611c76565b34801561073357600080fd5b506105e86004803603602081101561074a57600080fd5b5035611c88565b34801561075d57600080fd5b506106716004803603602081101561077457600080fd5b50356001600160a01b0316611c95565b34801561079057600080fd5b50610688611d98565b3480156107a557600080fd5b506105bf600480360360808110156107bc57600080fd5b506001600160a01b038135169060208101359060408101359060600135611d9f565b3480156107ea57600080fd5b50610688611e61565b3480156107ff57600080fd5b506106716004803603604081101561081657600080fd5b506001600160a01b038135169060200135611e85565b34801561083857600080fd5b50610671611fe4565b34801561084d57600080fd5b506105bf6004803603606081101561086457600080fd5b506001600160a01b03813581169160208101359091169060400135612067565b34801561089057600080fd5b50610688612149565b3480156108a557600080fd5b506108ae61216d565b6040805160ff9092168252519081900360200190f35b3480156108d057600080fd5b50610688600480360360408110156108e757600080fd5b506001600160a01b0381358116916020013516612172565b34801561090b57600080fd5b506105bf6004803603602081101561092257600080fd5b50356001600160a01b031661218f565b34801561093e57600080fd5b506105bf6004803603602081101561095557600080fd5b50356001600160a01b03166121a4565b34801561097157600080fd5b506106716004803603602081101561098857600080fd5b50356121b9565b34801561099b57600080fd5b50610671600480360360608110156109b257600080fd5b506001600160a01b0381358116916020810135821691604090910135166121c3565b3480156109e057600080fd5b5061068861251b565b3480156109f557600080fd5b5061067160048036036040811015610a0c57600080fd5b506001600160a01b038135169060200135612521565b348015610a2e57600080fd5b5061067160048036036020811015610a4557600080fd5b50356001600160a01b031661275c565b348015610a6157600080fd5b5061067160048036036060811015610a7857600080fd5b506001600160a01b038135811691602081013590911690604001356129a0565b348015610aa457600080fd5b5061067160048036036020811015610abb57600080fd5b50356001600160a01b0316612c9d565b348015610ad757600080fd5b506105e860048036036020811015610aee57600080fd5b50356001600160a01b0316612d44565b348015610b0a57600080fd5b506105e8612d5f565b348015610b1f57600080fd5b5061067160048036036020811015610b3657600080fd5b50356001600160a01b0316612d6e565b348015610b5257600080fd5b5061067160048036036020811015610b6957600080fd5b50356001600160a01b0316612d78565b348015610b8557600080fd5b50610688612e01565b348015610b9a57600080fd5b5061067160048036036040811015610bb157600080fd5b506001600160a01b0381358116916020013516612e08565b348015610bd557600080fd5b5061068860048036036040811015610bec57600080fd5b506001600160a01b038135811691602001351661300f565b348015610c1057600080fd5b5061067160048036036020811015610c2757600080fd5b50356001600160a01b031661302c565b348015610c4357600080fd5b5061068860048036036040811015610c5a57600080fd5b506001600160a01b03813581169160200135166130a4565b348015610c7e57600080fd5b50610c876130c1565b60408051602080825283518183015283519192839290830191858101910280838360005b83811015610cc3578181015183820152602001610cab565b505050509050019250505060405180910390f35b348015610ce357600080fd5b506105bf60048036036020811015610cfa57600080fd5b50356001600160a01b0316613123565b61067160048036036020811015610d2057600080fd5b50356001600160a01b0316613148565b348015610d3c57600080fd5b50610d6360048036036020811015610d5357600080fd5b50356001600160a01b031661329e565b6040805163ffffffff9092168252519081900360200190f35b348015610d8857600080fd5b5061068860048036036020811015610d9f57600080fd5b50356001600160a01b03166132b6565b348015610dbb57600080fd5b5061067160048036036020811015610dd257600080fd5b50356001600160a01b03166132d1565b348015610dee57600080fd5b5061068860048036036020811015610e0557600080fd5b50356001600160a01b0316613372565b348015610e2157600080fd5b5061068860048036036040811015610e3857600080fd5b506001600160a01b038135169060200135613384565b348015610e5a57600080fd5b5061068860048036036020811015610e7157600080fd5b50356001600160a01b0316613593565b348015610e8d57600080fd5b5061067160048036036020811015610ea457600080fd5b50356001600160a01b03166135a5565b348015610ec057600080fd5b506105e8613657565b348015610ed557600080fd5b5061068860048036036060811015610eec57600080fd5b506001600160a01b03813581169160208101358216916040909101351661365c565b348015610f1a57600080fd5b5061067160048036036060811015610f3157600080fd5b506001600160a01b0381358116916020810135909116906040013561367f565b348015610f5d57600080fd5b5061067160048036036060811015610f7457600080fd5b506001600160a01b03813581169160208101359091169060400135613935565b348015610fa057600080fd5b50610511613a81565b348015610fb557600080fd5b5061068860048036036040811015610fcc57600080fd5b506001600160a01b0381358116916020013516613aa0565b348015610ff057600080fd5b506106716004803603602081101561100757600080fd5b5035613abd565b34801561101a57600080fd5b506106886004803603604081101561103157600080fd5b506001600160a01b0381358116916020013516613b1f565b34801561105557600080fd5b506106716004803603604081101561106c57600080fd5b506001600160a01b038135169060200135613b3c565b34801561108e57600080fd5b50610671600480360360408110156110a557600080fd5b506001600160a01b038135169060200135613dc5565b3480156110c757600080fd5b506105bf600480360360408110156110de57600080fd5b506001600160a01b038135169060200135613eb3565b34801561110057600080fd5b506106716004803603602081101561111757600080fd5b50356001600160a01b0316613ec9565b34801561113357600080fd5b506105bf6004803603602081101561114a57600080fd5b50356001600160a01b0316613f40565b34801561116657600080fd5b50610c87613f55565b34801561117b57600080fd5b506106886004803603602081101561119257600080fd5b50356001600160a01b0316613fb5565b3480156111ae57600080fd5b50610671600480360360208110156111c557600080fd5b50356001600160a01b0316614019565b3480156111e157600080fd5b50610688600480360360608110156111f857600080fd5b506001600160a01b038135811691602081013582169160409091013516614145565b34801561122657600080fd5b50610671600480360360c081101561123d57600080fd5b506001600160a01b038135169060208101359060408101359060ff6060820135169060808101359060a00135614168565b34801561127a57600080fd5b506106716004803603602081101561129157600080fd5b50356001600160a01b03166143a6565b3480156112ad57600080fd5b506106886144fc565b3480156112c257600080fd5b50610671600480360360408110156112d957600080fd5b506001600160a01b038135169060200135614501565b3480156112fb57600080fd5b506106886004803603602081101561131257600080fd5b50356001600160a01b03166145c7565b34801561132e57600080fd5b50610671600480360360e081101561134557600080fd5b506001600160a01b03813581169160208101359091169060408101359060608101359060ff6080820135169060a08101359060c001356145d9565b34801561138c57600080fd5b50610671600480360360408110156113a357600080fd5b506001600160a01b03813516906020013561487d565b3480156113c557600080fd5b50610688600480360360208110156113dc57600080fd5b50356001600160a01b03166149e1565b3480156113f857600080fd5b506106716004803603602081101561140f57600080fd5b50356001600160a01b03166149f3565b34801561142b57600080fd5b506106886004803603604081101561144257600080fd5b506001600160a01b0381358116916020013516614a74565b34801561146657600080fd5b506106716004803603604081101561147d57600080fd5b506001600160a01b038135169060200135614a9f565b34801561149f57600080fd5b50610688600480360360408110156114b657600080fd5b506001600160a01b0381358116916020013516614b6a565b3480156114da57600080fd5b50610688600480360360608110156114f157600080fd5b506001600160a01b038135811691602081013582169160409091013516614b87565b34801561151f57600080fd5b506106886004803603602081101561153657600080fd5b50356001600160a01b0316614baa565b34801561155257600080fd5b506106716004803603606081101561156957600080fd5b506001600160a01b03813581169160208101359091169060400135614bbc565b34801561159557600080fd5b50610688614d0d565b3480156115aa57600080fd5b506105bf600480360360208110156115c157600080fd5b50356001600160a01b0316614d31565b3480156115dd57600080fd5b50610688614d46565b3480156115f257600080fd5b506105e86004803603602081101561160957600080fd5b5035614d4c565b34801561161c57600080fd5b5061164f6004803603604081101561163357600080fd5b5080356001600160a01b0316906020013563ffffffff16614d59565b6040805163ffffffff909316835260208301919091528051918290030190f35b34801561167b57600080fd5b506105e8614d86565b34801561169057600080fd5b50610671600480360360208110156116a757600080fd5b50356001600160a01b0316614d95565b3480156116c357600080fd5b506105bf600480360360a08110156116da57600080fd5b506001600160a01b03813581169160208101359091169060408101359060608101359060800135614e3f565b34801561171257600080fd5b506105bf6004803603602081101561172957600080fd5b50356001600160a01b0316614ef0565b34801561174557600080fd5b506106886004803603606081101561175c57600080fd5b506001600160a01b038135811691602081013582169160409091013516614f05565b34801561178a57600080fd5b50610c87614f28565b604051806040016040528060088152602001674b6565706572466960c01b81525081565b3360008181526006602090815260408083206001600160a01b038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a35060015b92915050565b6001546001600160a01b031681565b601f818154811061183a57fe5b6000918252602090912001546001600160a01b0316905081565b336000908152601b602090815260408083206001600160a01b0387811685529083528184209086168452909152902054156118cf576040805162461bcd60e51b815260206004820152601660248201527518dc99591a5d0e881c195b991a5b99c818dc99591a5d60521b604482015290519081900360640190fd5b6118dc4262112380614f88565b3360008181526017602090815260408083206001600160a01b038981168086529184528285209089168086529084528285209690965593835260188252808320938352928152828220938252929092529020546119399082614f88565b3360008181526018602090815260408083206001600160a01b03898116808652918452828520908916808652818552838620889055958552601684528285209185529083528184209484529382529091205491905210156119cb5760405162461bcd60e51b815260040180806020018281038252602a815260200180615f31602a913960400191505060405180910390fd5b6040805163cbc3ab5360e01b81526001600160a01b0385166004820152306024820152905160009173086a5f76b56e96581942912d079b2add7f2f3e929163cbc3ab5391604480820192602092909190829003018186803b158015611a2f57600080fd5b505af4158015611a43573d6000803e3d6000fd5b505050506040513d6020811015611a5957600080fd5b5051604080516318160ddd60e01b81529051919250600091611ae2916001600160a01b038816916318160ddd91600480820192602092909190829003018186803b158015611aa657600080fd5b505afa158015611aba573d6000803e3d6000fd5b505050506040513d6020811015611ad057600080fd5b5051611adc8486614fcb565b90615023565b6001600160a01b0385166000908152601560209081526040808320308452909152902054909150811115611b68576001600160a01b038416600090815260156020908152604080832030808552925290912054611b3f919061504e565b6001600160a01b0384166000908152601560209081526040808320308452909152812055611bc5565b611b72308261504e565b6001600160a01b0384166000908152601560209081526040808320308452909152902054611ba0908261514f565b6001600160a01b03851660009081526015602090815260408083203084529091529020555b336001600160a01b0316856001600160a01b0316856001600160a01b03167f6d962fe34dd0cf9a9df3e12a7b8ddfe5f790b3f11668553455d7b52db70a07be4387604051808381526020018281526020019250505060405180910390a45050505050565b7fae79f38ce3c3a090b57c8602e866fe90f3a8828f270ca8b44d5f286d35993ab081565b60025481565b601b60209081526000938452604080852082529284528284209052825290205481565b60136020526000908152604090205481565b6023818154811061183a57fe5b336000908152601d602052604090205460ff1615611cf2576040805162461bcd60e51b81526020600482015260156024820152741858dd1a5d985d194e88189b1858dadb1a5cdd1959605a1b604482015290519081900360640190fd5b3360009081526009602090815260408083206001600160a01b038516845290915290205415801590611d4657503360009081526009602090815260408083206001600160a01b038516845290915290205442115b611d8b576040805162461bcd60e51b815260206004820152601160248201527061637469766174653a20626f6e64696e6760781b604482015290519081900360640190fd5b611d95338261517a565b50565b6201518081565b60005a6024556001600160a01b0385166000908152601c602052604090205460ff168015611e0457506001600160a01b0385166000908152600e6020908152604080832054600d8352818420308552909252909120548591611e019190614f88565b10155b8015611e2857506001600160a01b0385166000908152601360205260409020548311155b8015611e5857506001600160a01b0385166000908152601060205260409020548290611e5590429061514f565b10155b95945050505050565b7f797cfab58fcb15f590eb8e4252d5c228ff88f94f907e119e80c4393a946e8f3581565b3360009081526014602052604090205460ff16611ed9576040805162461bcd60e51b815260206004820152600d60248201526c3932b1b2b4b83a1d1010b537b160991b604482015290519081900360640190fd5b604080518082018252601d81527f776f726b526563656970743a20696e7375666669656e742066756e647300000060208083019190915233600090815260158252838120600e82529091529190912054611f349183906152c8565b336000908152601560209081526040808320600e84528252808320939093556001600160a01b0385168083526012909152828220429055915183156108fc0291849190818181858888f19350505050158015611f94573d6000803e3d6000fd5b50604080514381526020810183905281516001600160a01b038516923392600e927f3cda93551ad083704be19fabbd7c3eb94d88f6e72ff221bdea9017e52e4144e8929181900390910190a45050565b6021546001600160a01b03163314612043576040805162461bcd60e51b815260206004820152601d60248201527f616363657074476f7665726e616e63653a202170656e64696e67476f76000000604482015290519081900360640190fd5b602154602080546001600160a01b0319166001600160a01b03909216919091179055565b6001600160a01b0383166000818152600660209081526040808320338085529252822054919290919082148015906120a157506000198114155b156121325760006120cd85604051806060016040528060278152602001615f7b602791398491906152c8565b6001600160a01b0380891660008181526006602090815260408083209489168084529482529182902085905581518581529151949550929391927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92592918290030190a3505b61213d86868661535f565b50600195945050505050565b7f5fae9ec55a1e547936e0e74d606b44cd5f912f9adcd0bba561fea62d570259e981565b601281565b600960209081526000928352604080842090915290825290205481565b601c6020526000908152604090205460ff1681565b60146020526000908152604090205460ff1681565b611d95338261504e565b6001600160a01b03821660009081526022602052604090205460ff1661222b576040805162461bcd60e51b815260206004820152601860248201527730b2322634b8bab4b234ba3caa37a537b11d1010b830b4b960411b604482015290519081900360640190fd5b6001600160a01b038084166000908152601a60209081526040808320868516845282528083209385168352929052205461229e576040805162461bcd60e51b815260206004820152600f60248201526e18dc99591a5d0e881b9bc8189bdb99608a1b604482015290519081900360640190fd5b6001600160a01b038084166000908152601a6020908152604080832086851684528252808320938516835292905220544211612313576040805162461bcd60e51b815260206004820152600f60248201526e6372656469743a20626f6e64696e6760881b604482015290519081900360640190fd5b6040805163cbc3ab5360e01b81526001600160a01b0384166004820152306024820152905160009173086a5f76b56e96581942912d079b2add7f2f3e929163cbc3ab5391604480820192602092909190829003018186803b15801561237757600080fd5b505af415801561238b573d6000803e3d6000fd5b505050506040513d60208110156123a157600080fd5b5051604080516318160ddd60e01b81529051919250600091612455916001600160a01b038716916318160ddd91600480820192602092909190829003018186803b1580156123ee57600080fd5b505afa158015612402573d6000803e3d6000fd5b505050506040513d602081101561241857600080fd5b50516001600160a01b038088166000908152601b602090815260408083208a85168452825280832093891683529290522054611adc908590614fcb565b9050612461308261551c565b6001600160a01b038316600090815260156020908152604080832030845290915290205461248f9082614f88565b6001600160a01b038085166000818152601560209081526040808320308452825280832095909555898416808352601b8252858320948a168084529482528583208484528252858320929092558451438152908101869052845191947fa90666688fb32254f45a367c38fbcd5f2664432b061a4354d9d3c9a7abcbec5b92918290030190a45050505050565b600f5481565b3360009081526014602052604090205460ff16612579576040805162461bcd60e51b81526020600482015260116024820152703bb7b935a932b1b2b4b83a1d1010b537b160791b604482015290519081900360640190fd5b6001546001600160a01b031663525ea6316125975a6024549061514f565b6040518263ffffffff1660e01b81526004018082815260200191505060206040518083038186803b1580156125cb57600080fd5b505afa1580156125df573d6000803e3d6000fd5b505050506040513d60208110156125f557600080fd5b5051811115612644576040805162461bcd60e51b81526020600482015260166024820152751ddbdc9ad49958d95a5c1d0e881b585e081b1a5b5a5d60521b604482015290519081900360640190fd5b604080518082018252601d81527f776f726b526563656970743a20696e7375666669656e742066756e647300000060208083019190915233600090815260158252838120308252909152919091205461269e9183906152c8565b3360009081526015602090815260408083203084528252808320939093556001600160a01b038516825260129052204290556126da8282615595565b6001600160a01b0382166000908152601360205260409020546126fd9082614f88565b6001600160a01b03831660008181526013602090815260409182902093909355805143815292830184905280519192339230927f3cda93551ad083704be19fabbd7c3eb94d88f6e72ff221bdea9017e52e4144e8928290030190a45050565b600260005414156127a2576040805162461bcd60e51b815260206004820152601f6024820152600080516020615f11833981519152604482015290519081900360640190fd5b60026000908155338152600a602090815260408083206001600160a01b0385168452909152902054158015906127fa5750336000908152600a602090815260408083206001600160a01b038516845290915290205442115b612841576040805162461bcd60e51b815260206004820152601360248201527277697468647261773a20756e626f6e64696e6760681b604482015290519081900360640190fd5b3360009081526011602052604090205460ff161561289b576040805162461bcd60e51b815260206004820152601260248201527177697468647261773a20646973707574657360701b604482015290519081900360640190fd5b6001600160a01b0381163014156128e057336000818152600b602090815260408083206001600160a01b03861684529091529020546128db91309161535f565b61290f565b336000818152600b602090815260408083206001600160a01b03861680855292529091205461290f929061564e565b336000818152600b602090815260408083206001600160a01b038616845282529182902054825143815242928101929092528183015290517f095ae150bb74a0755c30809eb8d4aa810b63b66b9ca96a1945bbb03d809df2e99181900360600190a2336000908152600b602090815260408083206001600160a01b0394909416835292905290812081905560019055565b600260005414156129e6576040805162461bcd60e51b815260206004820152601f6024820152600080516020615f11833981519152604482015290519081900360640190fd5b600260009081556001600160a01b03841681526022602052604090205460ff16612a52576040805162461bcd60e51b815260206004820152601860248201527730b2322634b8bab4b234ba3caa37a537b11d1010b830b4b960411b604482015290519081900360640190fd5b612a676001600160a01b0384163330846156a5565b3360009081526016602090815260408083206001600160a01b0387811685529083528184209086168452909152902054612aa19082614f88565b3360009081526016602090815260408083206001600160a01b0388811685529083528184209087168452909152902055612ade4262015180614f88565b336000818152601a602090815260408083206001600160a01b0389811680865291845282852090891680865290845282852096909655938352601b825280832093835292815282822093825292909252902054612b3b9082614f88565b336000908152601b602090815260408083206001600160a01b038881168552908352818420908716845282528083209390935560149052205460ff16158015612b9b57506001600160a01b03821660009081526019602052604090205442115b15612c36576020546040805163dc380cbb60e01b81526001600160a01b0385811660048301529151919092169163dc380cbb91602480830192600092919082900301818387803b158015612bee57600080fd5b505af1158015612c02573d6000803e3d6000fd5b50505050612c1c6211238042614f8890919063ffffffff16565b6001600160a01b0383166000908152601960205260409020555b336001600160a01b0316836001600160a01b0316836001600160a01b03167fe1cb44a16adbd63a44f65c279b23b8f447b2c6e120a2bc7f004758b446e05ed14385604051808381526020018281526020019250505060405180910390a45050600160005550565b6020546001600160a01b03163314612cec576040805162461bcd60e51b815260206004820152600d60248201526c3932b9b7b63b329d1010b3b7bb60991b604482015290519081900360640190fd5b6001600160a01b038116600081815260116020908152604091829020805460ff19169055815143815291517f7574a4a2c81b3099d59aaf15526ea966e1e2886afd21bf4a350af7af22db3a709281900390910190a250565b6003602052600090815260409020546001600160a01b031681565b6020546001600160a01b031681565b611d953382615705565b600154611d959082906001600160a01b031663525ea631612d9c5a6024549061514f565b6040518263ffffffff1660e01b81526004018082815260200191505060206040518083038186803b158015612dd057600080fd5b505afa158015612de4573d6000803e3d6000fd5b505050506040513d6020811015612dfa57600080fd5b5051612521565b6211238081565b3360009081526017602090815260408083206001600160a01b0386811685529083528184209085168452909152902054612e7d576040805162461bcd60e51b81526020600482015260116024820152701c995b5bdd99529bd88e881d5b989bdb99607a1b604482015290519081900360640190fd5b3360009081526017602090815260408083206001600160a01b03868116855290835281842090851684529091529020544211612ef7576040805162461bcd60e51b815260206004820152601460248201527372656d6f76654a6f623a20756e626f6e64696e6760601b604482015290519081900360640190fd5b3360008181526018602090815260408083206001600160a01b038781168086529184528285209087168086529084528285205495855260168452828520918552908352818420908452909152902054612f50908261514f565b3360008181526016602090815260408083206001600160a01b038981168086529184528285209089168086529084528285209690965584845260188352818420818552835281842095845294909152812055612fad91908361564e565b336001600160a01b0316836001600160a01b0316836001600160a01b03167fb69fc9f6d19ed402461251491f86c736bfcbe966e9584d3fb8a0057b313b69204385604051808381526020018281526020019250505060405180910390a4505050565b601560209081526000928352604080842090915290825290205481565b6020546001600160a01b03163314613083576040805162461bcd60e51b81526020600482015260156024820152743932bb37b5b2a634b8bab4b234ba3c9d1010b3b7bb60591b604482015290519081900360640190fd5b6001600160a01b03166000908152602260205260409020805460ff19169055565b600b60209081526000928352604080842090915290825290205481565b6060601f80548060200260200160405190810160405280929190818152602001828054801561311957602002820191906000526020600020905b81546001600160a01b031681526001909101906020018083116130fb575b5050505050905090565b60005a602455506001600160a01b03166000908152601c602052604090205460ff1690565b6001600160a01b03811660009081526014602052604090205460ff166131aa576040805162461bcd60e51b815260206004820152601260248201527130b23221b932b234ba22aa241d1010b537b160711b604482015290519081900360640190fd5b60006131bd612710611adc346032614fcb565b90506131f76131cc348361514f565b6001600160a01b0384166000908152601560209081526040808320600e845290915290205490614f88565b6001600160a01b038084166000908152601560209081526040808320600e8452825280832094909455549251929091169183156108fc0291849190818181858888f1935050505015801561324f573d6000803e3d6000fd5b5060408051438152346020820152815133926001600160a01b03861692600e927fb97975ea9bf5ae2173b9ea765214622396032aba11cd5cc1450c760ac80d059a929181900390910190a45050565b60056020526000908152604090205463ffffffff1681565b6001600160a01b031660009081526007602052604090205490565b6020546001600160a01b0316331461331e576040805162461bcd60e51b815260206004820152600b60248201526a39b630b9b41d1010b3b7bb60a91b604482015290519081900360640190fd5b6001600160a01b0381166000908152601c60209081526040808320805460ff19908116909155601d835281842080549091166001179055600d825280832030808552925290912054611d9591908390614bbc565b60196020526000908152604090205481565b60004382106133cb576040805162461bcd60e51b815260206004820152600e60248201526d33b2ba283934b7b92b37ba32b99d60911b604482015290519081900360640190fd5b6001600160a01b03831660009081526005602052604090205463ffffffff16806133f9576000915050611818565b6001600160a01b038416600090815260046020908152604080832063ffffffff600019860181168552925290912054168310613468576001600160a01b03841660009081526004602090815260408083206000199490940163ffffffff16835292905220600101549050611818565b6001600160a01b038416600090815260046020908152604080832083805290915290205463ffffffff168310156134a3576000915050611818565b600060001982015b8163ffffffff168163ffffffff16111561355c57600282820363ffffffff160481036134d5615ef9565b506001600160a01b038716600090815260046020908152604080832063ffffffff808616855290835292819020815180830190925280549093168082526001909301549181019190915290871415613537576020015194506118189350505050565b805163ffffffff1687111561354e57819350613555565b6001820392505b50506134ab565b506001600160a01b038516600090815260046020908152604080832063ffffffff9094168352929052206001015491505092915050565b60086020526000908152604090205481565b6020546001600160a01b031633146135f6576040805162461bcd60e51b815260206004820152600f60248201526e3932b6b7bb32a537b11d1010b3b7bb60891b604482015290519081900360640190fd5b6001600160a01b038116600081815260146020908152604091829020805460ff191690558151438152339181019190915281517f2ca18fdfae50f1042480d285d21f6706aa6abbd567d60a044b5bec07ccfee648929181900390910190a250565b600e81565b601860209081526000938452604080852082529284528284209052825290205481565b600260005414156136c5576040805162461bcd60e51b815260206004820152601f6024820152600080516020615f11833981519152604482015290519081900360640190fd5b600260009081556001600160a01b03831681526014602052604090205460ff1661372b576040805162461bcd60e51b815260206004820152601260248201527130b23221b932b234ba22aa241d1010b537b160711b604482015290519081900360640190fd5b6000836001600160a01b03166370a08231306040518263ffffffff1660e01b815260040180826001600160a01b0316815260200191505060206040518083038186803b15801561377a57600080fd5b505afa15801561378e573d6000803e3d6000fd5b505050506040513d60208110156137a457600080fd5b505190506137bd6001600160a01b0385163330856156a5565b600061384282866001600160a01b03166370a08231306040518263ffffffff1660e01b815260040180826001600160a01b0316815260200191505060206040518083038186803b15801561381057600080fd5b505afa158015613824573d6000803e3d6000fd5b505050506040513d602081101561383a57600080fd5b50519061514f565b90506000613857612710611adc846032614fcb565b9050613892613866838361514f565b6001600160a01b038088166000908152601560209081526040808320938c168352929052205490614f88565b6001600160a01b0380871660009081526015602090815260408083208b851680855290835292209390935591546138cb9291168361564e565b336001600160a01b0316856001600160a01b0316876001600160a01b03167fb97975ea9bf5ae2173b9ea765214622396032aba11cd5cc1450c760ac80d059a4386604051808381526020018281526020019250505060405180910390a45050600160005550505050565b3360009081526014602052604090205460ff16613989576040805162461bcd60e51b815260206004820152600d60248201526c3932b1b2b4b83a1d1010b537b160991b604482015290519081900360640190fd5b604080518082018252601d81527f776f726b526563656970743a20696e7375666669656e742066756e6473000000602080830191909152336000908152601582528381206001600160a01b038816825290915291909120546139ec9183906152c8565b3360009081526015602090815260408083206001600160a01b0388811680865291845282852095909555938616835260129091529020429055613a3090838361564e565b604080514381526020810183905281516001600160a01b03808616933393918816927f3cda93551ad083704be19fabbd7c3eb94d88f6e72ff221bdea9017e52e4144e89281900390910190a4505050565b604051806040016040528060038152602001624b464960e81b81525081565b600a60209081526000928352604080842090915290825290205481565b6020546001600160a01b03163314613b09576040805162461bcd60e51b815260206004820152600a60248201526936b4b73a1d1010b3b7bb60b11b604482015290519081900360640190fd5b602054611d95906001600160a01b03168261551c565b600d60209081526000928352604080842090915290825290205481565b60026000541415613b82576040805162461bcd60e51b815260206004820152601f6024820152600080516020615f11833981519152604482015290519081900360640190fd5b60026000908155338152601d602052604090205460ff1615613bdf576040805162461bcd60e51b8152602060048201526011602482015270189bdb990e88189b1858dadb1a5cdd1959607a1b604482015290519081900360640190fd5b613bec4262015180614f88565b3360009081526009602090815260408083206001600160a01b038716808552925290912091909155301415613c2b57613c2633308361535f565b613d12565b6000826001600160a01b03166370a08231306040518263ffffffff1660e01b815260040180826001600160a01b0316815260200191505060206040518083038186803b158015613c7a57600080fd5b505afa158015613c8e573d6000803e3d6000fd5b505050506040513d6020811015613ca457600080fd5b50519050613cbd6001600160a01b0384163330856156a5565b613d0e81846001600160a01b03166370a08231306040518263ffffffff1660e01b815260040180826001600160a01b0316815260200191505060206040518083038186803b15801561381057600080fd5b9150505b336000908152600c602090815260408083206001600160a01b0386168452909152902054613d409082614f88565b336000818152600c602090815260408083206001600160a01b03881680855290835281842095909555838352600982528083209483529381529083902054835143815291820152808301849052915190917fa150b7ad789014c0171a2873708daadbdbf87457d90d3896eaf0907e5b225ae4919081900360600190a250506001600055565b613dd24262112380614f88565b336000818152600a602090815260408083206001600160a01b0388168452909152902091909155613e05908390836157b4565b336000908152600b602090815260408083206001600160a01b0386168452909152902054613e339082614f88565b336000818152600b602090815260408083206001600160a01b03881680855290835281842095909555838352600a82528083209483529381529083902054835143815291820152808301849052915190917f50eca01e7e4362bc0279a45c4fbe68f263771dd3418b0a29c93008759f433b2e919081900360600190a25050565b6000613ec033848461535f565b50600192915050565b6020546001600160a01b03163314613f1e576040805162461bcd60e51b815260206004820152601360248201527239b2ba23b7bb32b93730b731b29d1010b3b7bb60691b604482015290519081900360640190fd5b602180546001600160a01b0319166001600160a01b0392909216919091179055565b60116020526000908152604090205460ff1681565b6060601e805480602002602001604051908101604052809291908181526020018280548015613119576020028201919060005260206000209081546001600160a01b031681526001909101906020018083116130fb575050505050905090565b6001600160a01b03811660009081526005602052604081205463ffffffff1680613fe0576000614012565b6001600160a01b038316600090815260046020908152604080832063ffffffff60001986011684529091529020600101545b9392505050565b6020546001600160a01b03163314614071576040805162461bcd60e51b815260206004820152601660248201527530b8383937bb32a634b8bab4b234ba3c9d1010b3b7bb60511b604482015290519081900360640190fd5b6001600160a01b03811660009081526022602052604090205460ff16156140df576040805162461bcd60e51b815260206004820152601760248201527f617070726f76654c69717569646974793a202170616972000000000000000000604482015290519081900360640190fd5b6001600160a01b03166000818152602260205260408120805460ff191660019081179091556023805491820181559091527fd57b2b5166478fd4318d2acc6cc2c704584312bdd8781b32d5d06abda57f42300180546001600160a01b0319169091179055565b601760209081526000938452604080852082529284528284209052825290205481565b604080517f1ac861a6a8532f3704e1768564a53a32774f00d6cf20ccbbdf60ab61378302bc6020808301919091526001600160a01b038916828401526060820188905260808083018890528351808403909101815260a08301845280519082012061190160f01b60c08401527fae79f38ce3c3a090b57c8602e866fe90f3a8828f270ca8b44d5f286d35993ab060c284015260e2808401829052845180850390910181526101028401808652815191840191909120600091829052610122850180875281905260ff891661014286015261016285018890526101828501879052945191949390926001926101a280840193601f198301929081900390910190855afa15801561427b573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b0381166142d8576040805162461bcd60e51b815260206004820152601260248201527164656c656761746542795369673a2073696760701b604482015290519081900360640190fd5b6001600160a01b03811660009081526008602052604090208054600181019091558814614343576040805162461bcd60e51b815260206004820152601460248201527364656c656761746542795369673a206e6f6e636560601b604482015290519081900360640190fd5b86421115614391576040805162461bcd60e51b815260206004820152601660248201527519195b1959d85d19509e54da59ce88195e1c1a5c995960521b604482015290519081900360640190fd5b61439b818a615705565b505050505050505050565b6020546001600160a01b031633146143f4576040805162461bcd60e51b815260206004820152600c60248201526b30b2322537b11d1010b3b7bb60a11b604482015290519081900360640190fd5b6001600160a01b03811660009081526014602052604090205460ff1615614456576040805162461bcd60e51b815260206004820152601160248201527030b2322537b11d103537b11035b737bbb760791b604482015290519081900360640190fd5b6001600160a01b0381166000818152601460209081526040808320805460ff19166001908117909155601f805491820181559093527fa03837a25210ee280c2113ff4b77ca23440b19d4866cca721c801278fd08d80790920180546001600160a01b031916841790558151438152339181019190915281517f3d9884fbd11fce9188657c4bcfda7491d3316ce97bd234d981b7be1f012a852f929181900390910190a250565b603281565b6020546001600160a01b03163314614551576040805162461bcd60e51b815260206004820152600e60248201526d30b2322b37ba32b99d1010b3b7bb60911b604482015290519081900360640190fd5b6001600160a01b0382166000908152600e6020526040902054614574908261514f565b6001600160a01b0383166000908152600e6020526040902055600f5461459a908261514f565b600f556001600160a01b038083166000908152600360205260408120546145c392169083615849565b5050565b60126020526000908152604090205481565b6001600160a01b0380881660008181526008602090815260408083208054600180820190925582517f5fae9ec55a1e547936e0e74d606b44cd5f912f9adcd0bba561fea62d570259e98186015280840196909652958c166060860152608085018b905260a085019590955260c08085018a90528151808603909101815260e08501825280519083012061190160f01b6101008601527fae79f38ce3c3a090b57c8602e866fe90f3a8828f270ca8b44d5f286d35993ab061010286015261012280860182905282518087039091018152610142860180845281519185019190912090859052610162860180845281905260ff8a166101828701526101a286018990526101c2860188905291519095919491926101e2808401939192601f1981019281900390910190855afa158015614714573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116614770576040805162461bcd60e51b81526020600482015260116024820152707065726d69743a207369676e617475726560781b604482015290519081900360640190fd5b896001600160a01b0316816001600160a01b0316146147cd576040805162461bcd60e51b81526020600482015260146024820152731c195c9b5a5d0e881d5b985d5d1a1bdc9a5e995960621b604482015290519081900360640190fd5b86421115614814576040805162461bcd60e51b815260206004820152600f60248201526e1c195c9b5a5d0e88195e1c1a5c9959608a1b604482015290519081900360640190fd5b6001600160a01b03808b166000818152600660209081526040808320948e16808452948252918290208c905581518c815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a350505050505050505050565b6020546001600160a01b031633146148d1576040805162461bcd60e51b815260206004820152601260248201527130b23225a82921b932b234ba1d1010b3b7bb60711b604482015290519081900360640190fd5b6001600160a01b03821660009081526014602052604090205460ff16614933576040805162461bcd60e51b815260206004820152601260248201527130b23225a82921b932b234ba1d1010b537b160711b604482015290519081900360640190fd5b6001600160a01b03821660009081526015602090815260408083203084529091529020546149619082614f88565b6001600160a01b038316600090815260156020908152604080832030808552925290912091909155614993908261551c565b6040805143815260208101839052815133926001600160a01b0386169230927fb97975ea9bf5ae2173b9ea765214622396032aba11cd5cc1450c760ac80d059a929181900390910190a45050565b600e6020526000908152604090205481565b6020546001600160a01b03163314614a52576040805162461bcd60e51b815260206004820152601760248201527f7365744b6565706572466948656c7065723a2021676f76000000000000000000604482015290519081900360640190fd5b600180546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205490565b6020546001600160a01b03163314614aef576040805162461bcd60e51b815260206004820152600e60248201526d30b2322b37ba32b99d1010b3b7bb60911b604482015290519081900360640190fd5b614af9823061517a565b6001600160a01b0382166000908152600e6020526040902054614b1c9082614f88565b6001600160a01b0383166000908152600e6020526040902055600f54614b429082614f88565b600f556001600160a01b038083166000908152600360205260408120546145c3921683615849565b600c60209081526000928352604080842090915290825290205481565b601660209081526000938452604080852082529284528284209052825290205481565b60106020526000908152604090205481565b60026000541415614c02576040805162461bcd60e51b815260206004820152601f6024820152600080516020615f11833981519152604482015290519081900360640190fd5b60026000556020546001600160a01b03163314614c54576040805162461bcd60e51b815260206004820152600b60248201526a39b630b9b41d1010b3b7bb60a91b604482015290519081900360640190fd5b6001600160a01b038316301415614c8257602054614c7d9030906001600160a01b03168361535f565b614c9c565b602054614c9c906001600160a01b0385811691168361564e565b614ca78383836157b4565b6001600160a01b038216600081815260116020908152604091829020805460ff19169055815143815290810184905281513393927ff7e41ea76f0e7b22ba17dc4cc01fa75cff34ea24f5efe2874f5e175296259050928290030190a35050600160005550565b7f1ac861a6a8532f3704e1768564a53a32774f00d6cf20ccbbdf60ab61378302bc81565b60226020526000908152604090205460ff1681565b61271081565b601e818154811061183a57fe5b60046020908152600092835260408084209091529082529020805460019091015463ffffffff9091169082565b6021546001600160a01b031681565b6020546001600160a01b03163314614de4576040805162461bcd60e51b815260206004820152600d60248201526c3234b9b83aba329d1010b3b7bb60991b604482015290519081900360640190fd5b6001600160a01b038116600081815260116020908152604091829020805460ff19166001179055815143815291517ffb2bdfce35c242f34d4f9633225d3c34a5892d5eae9ce102de6aac188dd25ba09281900390910190a250565b60005a6024556001600160a01b0386166000908152601c602052604090205460ff168015614e9257506001600160a01b038087166000908152600d60209081526040808320938916835292905220548411155b8015614eb657506001600160a01b0386166000908152601360205260409020548311155b8015614ee657506001600160a01b0386166000908152601060205260409020548290614ee390429061514f565b10155b9695505050505050565b601d6020526000908152604090205460ff1681565b601a60209081526000938452604080852082529284528284209052825290205481565b60606023805480602002602001604051908101604052809291908181526020018280548015613119576020028201919060005260206000209081546001600160a01b031681526001909101906020018083116130fb575050505050905090565b600082820183811015614012576040805162461bcd60e51b81526020600482015260066024820152656164643a202b60d01b604482015290519081900360640190fd5b600082614fda57506000611818565b82820282848281614fe757fe5b0414614012576040805162461bcd60e51b815260206004820152600660248201526536bab61d101560d11b604482015290519081900360640190fd5b60006140128383604051806040016040528060068152602001656469763a202f60d01b8152506159c7565b6001600160a01b03821661509f576040805162461bcd60e51b81526020600482015260136024820152725f6275726e3a207a65726f206164647265737360681b604482015290519081900360640190fd5b60408051808201825260168152755f6275726e3a20657863656564732062616c616e636560501b6020808301919091526001600160a01b0385166000908152600790915291909120546150f39183906152c8565b6001600160a01b038316600090815260076020526040902055600254615119908261514f565b6002556040805182815290516000916001600160a01b03851691600080516020615f5b8339815191529181900360200190a35050565b60006140128383604051806040016040528060068152602001657375623a202d60d01b8152506152c8565b6001600160a01b0382166000908152601060205260409020546151ff576001600160a01b03821660008181526010602090815260408083204290819055601e8054600181019091557f50bb669a95c7b50b7e8a6f09454034b2b14cf2b85c730dca9a539ca82cb6e3500180546001600160a01b03191690951790945560129091529020555b6001600160a01b038083166000908152601c60209081526040808320805460ff19166001179055600c8252808320938516835292905220546152449082908490615a2c565b6001600160a01b038083166000818152600c60209081526040808320948616808452948252808320839055838352600d825280832094835293815290839020548351438152429281019290925281840152915190917f3d80dd4660c08288217e88c2d45230220fcd3debf16898013243026e6a2aad05919081900360600190a25050565b600081848411156153575760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561531c578181015183820152602001615304565b50505050905090810190601f1680156153495780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6001600160a01b0383166153ba576040805162461bcd60e51b815260206004820152601d60248201527f5f7472616e73666572546f6b656e733a207a65726f2061646472657373000000604482015290519081900360640190fd5b6001600160a01b038216615415576040805162461bcd60e51b815260206004820152601d60248201527f5f7472616e73666572546f6b656e733a207a65726f2061646472657373000000604482015290519081900360640190fd5b60408051808201825260208082527f5f7472616e73666572546f6b656e733a20657863656564732062616c616e6365818301526001600160a01b03861660009081526007909152919091205461546c9183906152c8565b6001600160a01b0380851660009081526007602081815260408084209590955584518086018652601a81527f5f7472616e73666572546f6b656e733a206f766572666c6f77730000000000008183015293871683525291909120546154d2918390615ac4565b6001600160a01b038084166000818152600760209081526040918290209490945580518581529051919392871692600080516020615f5b83398151915292918290030190a3505050565b6002546155299082614f88565b6002556001600160a01b03821660009081526007602052604090205461554f9082614f88565b6001600160a01b0383166000818152600760209081526040808320949094558351858152935192939192600080516020615f5b8339815191529281900390910190a35050565b6001600160a01b0382166000908152600d602090815260408083203084529091529020546155c39082614f88565b6001600160a01b0383166000908152600d60209081526040808320308452909152902055600f546155f49082614f88565b600f556001600160a01b0380831660009081526003602052604081205461561c921683615849565b6040805182815290516001600160a01b038416913391600080516020615f5b8339815191529181900360200190a35050565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b1790526156a0908490615b22565b505050565b604080516001600160a01b0380861660248301528416604482015260648082018490528251808303909101815260849091019091526020810180516001600160e01b03166323b872dd60e01b1790526156ff908590615b22565b50505050565b6001600160a01b03808316600081815260036020908152604080832054600d8352818420308552835281842054948452600e909252822054931692909161574c9190614f88565b6001600160a01b0385811660008181526003602052604080822080546001600160a01b031916898616908117909155905194955093928616927f3134e8a2e6d97e929a7e54011ea5485d7d196dd5f0ba4d4ef95803e8e3fc257f9190a46156ff828483615849565b6001600160a01b038083166000908152600d60209081526040808320938716835292905220546157e4908261514f565b6001600160a01b038084166000908152600d60209081526040808320938816808452939091529020919091553014156156a057600f54615824908261514f565b600f556001600160a01b038083166000908152600360205260408120546156a0921690835b816001600160a01b0316836001600160a01b03161415801561586b5750600081115b156156a0576001600160a01b03831615615936576001600160a01b03831660009081526005602052604081205463ffffffff1690816158ab5760006158dd565b6001600160a01b038516600090815260046020908152604080832063ffffffff60001987011684529091529020600101545b9050600061592484604051806040016040528060168152602001755f6d6f7665566f7465733a20756e646572666c6f777360501b815250846152c89092919063ffffffff16565b905061593286848484615cdd565b5050505b6001600160a01b038216156156a0576001600160a01b03821660009081526005602052604081205463ffffffff1690816159715760006159a3565b6001600160a01b038416600090815260046020908152604080832063ffffffff60001987011684529091529020600101545b905060006159b18285614f88565b90506159bf85848484615cdd565b505050505050565b60008183615a165760405162461bcd60e51b815260206004820181815283516024840152835190928392604490910191908501908083836000831561531c578181015183820152602001615304565b506000838581615a2257fe5b0495945050505050565b6001600160a01b038083166000908152600d6020908152604080832093871683529290522054615a5c9082614f88565b6001600160a01b038084166000908152600d60209081526040808320938816808452939091529020919091553014156156a057600f54615a9c9082614f88565b600f556001600160a01b038083166000908152600360205260408120546156a0921683615849565b60008383018285821015615b195760405162461bcd60e51b815260206004820181815283516024840152835190928392604490910191908501908083836000831561531c578181015183820152602001615304565b50949350505050565b615b34826001600160a01b0316615e5f565b615b7c576040805162461bcd60e51b815260206004820152601460248201527314d85999515490cc8c0e880858dbdb9d1c9858dd60621b604482015290519081900360640190fd5b60006060836001600160a01b0316836040518082805190602001908083835b60208310615bba5780518252601f199092019160209182019101615b9b565b6001836020036101000a0380198251168184511680821785525050505050509050019150506000604051808303816000865af19150503d8060008114615c1c576040519150601f19603f3d011682016040523d82523d6000602084013e615c21565b606091505b509150915081615c78576040805162461bcd60e51b815260206004820181905260248201527f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564604482015290519081900360640190fd5b8051156156ff57808060200190516020811015615c9457600080fd5b50516156ff576040805162461bcd60e51b815260206004820152601360248201527214d85999515490cc8c0e88085cdd58d8d95959606a1b604482015290519081900360640190fd5b6000615d1e436040518060400160405280601981526020017f5f7772697465436865636b706f696e743a203332206269747300000000000000815250615e9b565b905060008463ffffffff16118015615d6757506001600160a01b038516600090815260046020908152604080832063ffffffff6000198901811685529252909120548282169116145b15615da4576001600160a01b038516600090815260046020908152604080832063ffffffff60001989011684529091529020600101829055615e15565b60408051808201825263ffffffff808416825260208083018681526001600160a01b038a166000818152600484528681208b8616825284528681209551865490861663ffffffff19918216178755925160019687015590815260059092529390208054928801909116919092161790555b604080518481526020810184905281516001600160a01b038816927fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a724928290030190a25050505050565b6000813f7fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470818114801590615e9357508115155b949350505050565b6000816401000000008410615ef15760405162461bcd60e51b815260206004820181815283516024840152835190928392604490910191908501908083836000831561531c578181015183820152602001615304565b509192915050565b60408051808201909152600080825260208201529056fe5265656e7472616e637947756172643a207265656e7472616e742063616c6c00756e626f6e644c697175696469747946726f6d4a6f623a20696e73756666696369656e742066756e6473ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef7472616e7366657246726f6d3a2065786365656473207370656e64657220616c6c6f77616e6365a26469706673582212209c51e0d18472a02cbb0eed7523cd50390b329ae6f9055df69d0b264349e9bdd564736f6c634300060c0033

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

0000000000000000000000005610eafe0ed5af17e57ad88b37c73a7162016f44

-----Decoded View---------------
Arg [0] : _kph (address): 0x5610eafE0ED5af17e57AD88B37c73a7162016F44

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000005610eafe0ed5af17e57ad88b37c73a7162016f44


Libraries Used


Deployed Bytecode Sourcemap

8943:30613:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9207:40;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37215:205;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;37215:205:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;9121:27;;;;;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;9121:27:0;;;;;;;;;;;;;;21008:24;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;21008:24:0;;:::i;26045:1130::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;26045:1130:0;;;;;;;;;;;;;;;;;:::i;:::-;;10248:40;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;9507:27;;;;;;;;;;;;;:::i;20513:87::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;20513:87:0;;;;;;;;;;;;;;;;;;;:::i;19520:45::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;19520:45:0;-1:-1:-1;;;;;19520:45:0;;:::i;21307:31::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;21307:31:0;;:::i;34070:274::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34070:274:0;-1:-1:-1;;;;;34070:274:0;;:::i;18060:43::-;;;;;;;;;;;;;:::i;32481:355::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;32481:355:0;;;;;;;;;;;;;;;;;;:::i;10122:119::-;;;;;;;;;;;;;:::i;29750:376::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;29750:376:0;;;;;;;;:::i;32165:170::-;;;;;;;;;;;;;:::i;38398:553::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;38398:553:0;;;;;;;;;;;;;;;;;:::i;10583:128::-;;;;;;;;;;;;;:::i;9408:35::-;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;18384:60;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;18384:60:0;;;;;;;;;;:::i;20654:39::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;20654:39:0;-1:-1:-1;;;;;20654:39:0;;:::i;19639:36::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;19639:36:0;-1:-1:-1;;;;;19639:36:0;;:::i;28014:80::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;28014:80:0;;:::i;25239:798::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;25239:798:0;;;;;;;;;;;;;;;;;;;:::i;19106:27::-;;;;;;;;;;;;;:::i;28750:567::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;28750:567:0;;;;;;;;:::i;35205:673::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35205:673:0;-1:-1:-1;;;;;35205:673:0;;:::i;24409:822::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;24409:822:0;;;;;;;;;;;;;;;;;:::i;36856:198::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36856:198:0;-1:-1:-1;;;;;36856:198:0;;:::i;9608:45::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;9608:45:0;-1:-1:-1;;;;;9608:45:0;;:::i;21105:25::-;;;;;;;;;;;;;:::i;11380:95::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;11380:95:0;-1:-1:-1;;;;;11380:95:0;;:::i;28618:124::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;28618:124:0;-1:-1:-1;;;;;28618:124:0;;:::i;17964:37::-;;;;;;;;;;;;;:::i;27183:673::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;27183:673:0;;;;;;;;;;:::i;19738:59::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;19738:59:0;;;;;;;;;;:::i;24114:177::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;24114:177:0;-1:-1:-1;;;;;24114:177:0;;:::i;18620:68::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;18620:68:0;;;;;;;;;;:::i;31390:93::-;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32343:130;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32343:130:0;-1:-1:-1;;;;;32343:130:0;;:::i;21787:354::-;;;;;;;;;;;;;;;;-1:-1:-1;21787:354:0;-1:-1:-1;;;;;21787:354:0;;:::i;9875:49::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;9875:49:0;-1:-1:-1;;;;;9875:49:0;;:::i;:::-;;;;;;;;;;;;;;;;;;;38117:108;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38117:108:0;-1:-1:-1;;;;;38117:108:0;;:::i;36598:246::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36598:246:0;-1:-1:-1;;;;;36598:246:0;;:::i;20282:48::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;20282:48:0;-1:-1:-1;;;;;20282:48:0;;:::i;12327:1191::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;12327:1191:0;;;;;;;;:::i;10794:39::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;10794:39:0;-1:-1:-1;;;;;10794:39:0;;:::i;31494:197::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31494:197:0;-1:-1:-1;;;;;31494:197:0;;:::i;18281:42::-;;;;;;;;;;;;;:::i;20142:97::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;20142:97:0;;;;;;;;;;;;;;;;;;;:::i;22149:627::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;22149:627:0;;;;;;;;;;;;;;;;;:::i;29329:409::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;29329:409:0;;;;;;;;;;;;;;;;;:::i;9308:37::-;;;;;;;;;;;;;:::i;18505:62::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;18505:62:0;;;;;;;;;;:::i;27864:138::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;27864:138:0;;:::i;18878:57::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;18878:57:0;;;;;;;;;;:::i;33203:743::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;33203:743:0;;;;;;;;:::i;34825:368::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;34825:368:0;;;;;;;;:::i;38239:147::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;38239:147:0;;;;;;;;:::i;31872:170::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31872:170:0;-1:-1:-1;;;;;31872:170:0;;:::i;19307:40::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;19307:40:0;-1:-1:-1;;;;;19307:40:0;;:::i;33959:99::-;;;;;;;;;;;;;:::i;12099:220::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;12099:220:0;-1:-1:-1;;;;;12099:220:0;;:::i;23811:295::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;23811:295:0;-1:-1:-1;;;;;23811:295:0;;:::i;20000:90::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;20000:90:0;;;;;;;;;;;;;;;;;;;:::i;11483:604::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;11483:604:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;31111:267::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31111:267:0;-1:-1:-1;;;;;31111:267:0;;:::i;18155:29::-;;;;;;;;;;;;;:::i;23123:289::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;23123:289:0;;;;;;;;:::i;19412:39::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;19412:39:0;-1:-1:-1;;;;;19412:39:0;;:::i;37433:676::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;37433:676:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;23420:380::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;23420:380:0;;;;;;;;:::i;19006:37::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;19006:37:0;-1:-1:-1;;;;;19006:37:0;;:::i;31699:161::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31699:161:0;-1:-1:-1;;;;;31699:161:0;;:::i;37067:136::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;37067:136:0;;;;;;;;;;:::i;22784:328::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;22784:328:0;;;;;;;;:::i;18754:64::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;18754:64:0;;;;;;;;;;:::i;19862:89::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;19862:89:0;;;;;;;;;;;;;;;;;;;:::i;19199:41::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;19199:41:0;-1:-1:-1;;;;;19199:41:0;;:::i;36099:491::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;36099:491:0;;;;;;;;;;;;;;;;;:::i;10382:111::-;;;;;;;;;;;;;:::i;21249:49::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;21249:49:0;-1:-1:-1;;;;;21249:49:0;;:::i;18191:33::-;;;;;;;;;;;;;:::i;20896:27::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;20896:27:0;;:::i;9736:70::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;9736:70:0;;-1:-1:-1;;;;;9736:70:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;21137:32;;;;;;;;;;;;;:::i;35891:196::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35891:196:0;-1:-1:-1;;;;;35891:196:0;;:::i;32848:344::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;32848:344:0;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;20765:41::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;20765:41:0;-1:-1:-1;;;;;20765:41:0;;:::i;20375:88::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;20375:88:0;;;;;;;;;;;;;;;;;;;:::i;24299:98::-;;;;;;;;;;;;;:::i;9207:40::-;;;;;;;;;;;;;;-1:-1:-1;;;9207:40:0;;;;:::o;37215:205::-;37306:10;37278:4;37295:22;;;:10;:22;;;;;;;;-1:-1:-1;;;;;37295:31:0;;;;;;;;;;;:40;;;37353:37;;;;;;;37278:4;;37295:31;;37306:10;;37353:37;;;;;;;;-1:-1:-1;37408:4:0;37215:205;;;;;:::o;9121:27::-;;;-1:-1:-1;;;;;9121:27:0;;:::o;21008:24::-;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;21008:24:0;;-1:-1:-1;21008:24:0;:::o;26045:1130::-;26166:10;26150:27;;;;:15;:27;;;;;;;;-1:-1:-1;;;;;26150:38:0;;;;;;;;;;;:43;;;;;;;;;;;:48;26142:83;;;;;-1:-1:-1;;;26142:83:0;;;;;;;;;;;;-1:-1:-1;;;26142:83:0;;;;;;;;;;;;;;;26285:15;:3;17994:7;26285;:15::i;:::-;26255:10;26236:30;;;;:18;:30;;;;;;;;-1:-1:-1;;;;;26236:41:0;;;;;;;;;;;;:46;;;;;;;;;;;;:64;;;;26367:37;;;:25;:37;;;;;:48;;;;;;;;;:53;;;;;;;;;;:65;;26425:6;26367:57;:65::i;:::-;26337:10;26311:37;;;;:25;:37;;;;;;;;-1:-1:-1;;;;;26311:48:0;;;;;;;;;;;;:53;;;;;;;;;;;;:121;;;26508:29;;;:17;:29;;;;;:40;;;;;;;;;:45;;;;;;;;;;26451:53;;;-1:-1:-1;26451:102:0;26443:157;;;;-1:-1:-1;;;26443:157:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26631:52;;;-1:-1:-1;;;26631:52:0;;-1:-1:-1;;;;;26631:52:0;;;;;;26677:4;26631:52;;;;;;26613:15;;26631;;:26;;:52;;;;;;;;;;;;;;;:15;:52;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;26631:52:0;26736:31;;;-1:-1:-1;;;26736:31:0;;;;26631:52;;-1:-1:-1;26694:12:0;;26709:59;;-1:-1:-1;;;;;26736:29:0;;;;;:31;;;;;26631:52;;26736:31;;;;;;;;:29;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;26736:31:0;26709:22;:10;26724:6;26709:14;:22::i;:::-;:26;;:59::i;:::-;-1:-1:-1;;;;;26793:12:0;;;;;;:7;:12;;;;;;;;26814:4;26793:27;;;;;;;;26694:74;;-1:-1:-1;26783:37:0;;26779:312;;;-1:-1:-1;;;;;26858:12:0;;;;;;:7;:12;;;;;;;;26851:4;26858:27;;;;;;;;;26837:49;;26851:4;26837:5;:49::i;:::-;-1:-1:-1;;;;;26901:12:0;;26931:1;26901:12;;;:7;:12;;;;;;;;26922:4;26901:27;;;;;;;:31;26779:312;;;26965:29;26979:4;26986:7;26965:5;:29::i;:::-;-1:-1:-1;;;;;27039:12:0;;;;;;:7;:12;;;;;;;;27060:4;27039:27;;;;;;;;:40;;27071:7;27039:31;:40::i;:::-;-1:-1:-1;;;;;27009:12:0;;;;;;:7;:12;;;;;;;;27030:4;27009:27;;;;;;;:70;26779:312;27134:10;-1:-1:-1;;;;;27108:59:0;27123:9;-1:-1:-1;;;;;27108:59:0;27118:3;-1:-1:-1;;;;;27108:59:0;;27146:12;27160:6;27108:59;;;;;;;;;;;;;;;;;;;;;;;;26045:1130;;;;;:::o;10248:40::-;;;:::o;9507:27::-;;;;:::o;20513:87::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;19520:45::-;;;;;;;;;;;;;:::o;21307:31::-;;;;;;;;;;34070:274;34144:10;34134:21;;;;:9;:21;;;;;;;;34133:22;34125:56;;;;;-1:-1:-1;;;34125:56:0;;;;;;;;;;;;-1:-1:-1;;;34125:56:0;;;;;;;;;;;;;;;34209:10;34200:20;;;;:8;:20;;;;;;;;-1:-1:-1;;;;;34200:29:0;;;;;;;;;;:34;;;;:73;;-1:-1:-1;34247:10:0;34238:20;;;;:8;:20;;;;;;;;-1:-1:-1;;;;;34238:29:0;;;;;;;;;;34270:3;-1:-1:-1;34200:73:0;34192:103;;;;;-1:-1:-1;;;34192:103:0;;;;;;;;;;;;-1:-1:-1;;;34192:103:0;;;;;;;;;;;;;;;34306:30;34316:10;34328:7;34306:9;:30::i;:::-;34070:274;:::o;18060:43::-;18097:6;18060:43;:::o;32481:355::-;32573:4;32601:9;32590:8;:20;-1:-1:-1;;;;;32628:15:0;;;;;;:7;:15;;;;;;;;:94;;;;-1:-1:-1;;;;;;32697:13:0;;;;;;:5;:13;;;;;;;;;32664:5;:13;;;;;32686:4;32664:28;;;;;;;;;32715:7;;32664:47;;:28;:32;:47::i;:::-;:58;;32628:94;:146;;;;-1:-1:-1;;;;;;32743:21:0;;;;;;:13;:21;;;;;;:31;-1:-1:-1;32743:31:0;32628:146;:200;;;;-1:-1:-1;;;;;;32803:17:0;;;;;;:9;:17;;;;;;32825:3;;32795:26;;:3;;:7;:26::i;:::-;:33;;32628:200;32621:207;32481:355;-1:-1:-1;;;;;32481:355:0:o;10122:119::-;10164:77;10122:119;:::o;29750:376::-;29832:10;29827:16;;;;:4;:16;;;;;;;;29819:42;;;;;-1:-1:-1;;;29819:42:0;;;;;;;;;;;;-1:-1:-1;;;29819:42:0;;;;;;;;;;;;;;;29899:69;;;;;;;;;;;;;;;;;;;;29907:10;-1:-1:-1;29899:19:0;;;:7;:19;;;;;18319:3;29899:24;;;;;;;;;;:69;;29928:6;;29899:28;:69::i;:::-;29880:10;29872:19;;;;:7;:19;;;;;;;;18319:3;29872:24;;;;;;;:96;;;;-1:-1:-1;;;;;29979:15:0;;;;;:7;:15;;;;;;29997:3;29979:21;;30011:32;;;;;;;30036:6;;30011:32;;29872:19;30011:32;30036:6;29979:15;30011:32;;;;;;;;;;;;;;;;;;;;-1:-1:-1;30059:59:0;;;30097:12;30059:59;;;;;;;;;;-1:-1:-1;;;;;30059:59:0;;;30077:10;;18319:3;;30059:59;;;;;;;;;;;29750:376;;:::o;32165:170::-;32235:17;;-1:-1:-1;;;;;32235:17:0;32221:10;:31;32213:73;;;;;-1:-1:-1;;;32213:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;32310:17;;32297:10;:30;;-1:-1:-1;;;;;;32297:30:0;-1:-1:-1;;;;;32310:17:0;;;32297:30;;;;;;32165:170::o;38398:553::-;-1:-1:-1;;;;;38557:15:0;;38477:4;38557:15;;;:10;:15;;;;;;;;38512:10;38557:24;;;;;;;;38477:4;;38512:10;;38557:24;38598:14;;;;;:46;;;-1:-1:-1;;38616:16:0;:28;;38598:46;38594:282;;;38661:17;38681:71;38702:6;38681:71;;;;;;;;;;;;;;;;;:16;;:71;:20;:71::i;:::-;-1:-1:-1;;;;;38767:15:0;;;;;;;:10;:15;;;;;;;;:24;;;;;;;;;;;;;:39;;;38828:36;;;;;;;38661:91;;-1:-1:-1;38767:24:0;;:15;;38828:36;;;;;;;;;38594:282;;38888:33;38904:3;38909;38914:6;38888:15;:33::i;:::-;-1:-1:-1;38939:4:0;;38398:553;-1:-1:-1;;;;;38398:553:0:o;10583:128::-;10625:86;10583:128;:::o;9408:35::-;9441:2;9408:35;:::o;18384:60::-;;;;;;;;;;;;;;;;;;;;;;;;:::o;20654:39::-;;;;;;;;;;;;;;;:::o;19639:36::-;;;;;;;;;;;;;;;:::o;28014:80::-;28061:25;28067:10;28079:6;28061:5;:25::i;25239:798::-;-1:-1:-1;;;;;25343:28:0;;;;;;:17;:28;;;;;;;;25335:65;;;;;-1:-1:-1;;;25335:65:0;;;;;;;;;;;;-1:-1:-1;;;25335:65:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;25419:26:0;;;;;;;:16;:26;;;;;;;;:37;;;;;;;;;;:42;;;;;;;;;;25411:75;;;;;-1:-1:-1;;;25411:75:0;;;;;;;;;;;;-1:-1:-1;;;25411:75:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;25505:26:0;;;;;;;:16;:26;;;;;;;;:37;;;;;;;;;;:42;;;;;;;;;;25550:3;-1:-1:-1;25497:76:0;;;;;-1:-1:-1;;;25497:76:0;;;;;;;;;;;;-1:-1:-1;;;25497:76:0;;;;;;;;;;;;;;;25602:52;;;-1:-1:-1;;;25602:52:0;;-1:-1:-1;;;;;25602:52:0;;;;;;25648:4;25602:52;;;;;;25584:15;;25602;;:26;;:52;;;;;;;;;;;;;;;:15;:52;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;25602:52:0;25742:31;;;-1:-1:-1;;;25742:31:0;;;;25602:52;;-1:-1:-1;25665:12:0;;25680:94;;-1:-1:-1;;;;;25742:29:0;;;;;:31;;;;;25602:52;;25742:31;;;;;;;;:29;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;25742:31:0;-1:-1:-1;;;;;25695:25:0;;;;;;;:15;25742:31;25695:25;;;;;;;:36;;;;;;;;;;:41;;;;;;;;;;25680:57;;:10;;:14;:57::i;:94::-;25665:109;;25785:29;25799:4;25806:7;25785:5;:29::i;:::-;-1:-1:-1;;;;;25855:12:0;;;;;;:7;:12;;;;;;;;25876:4;25855:27;;;;;;;;:40;;25887:7;25855:31;:40::i;:::-;-1:-1:-1;;;;;25825:12:0;;;;;;;:7;:12;;;;;;;;25846:4;25825:27;;;;;;;:70;;;;25906:25;;;;;;:15;:25;;;;;:36;;;;;;;;;;;;:41;;;;;;;;:45;;;;25969:60;;26007:12;25969:60;;;;;;;;;;25906:25;;25969:60;;;;;;;;;25239:798;;;;;:::o;19106:27::-;;;;:::o;28750:567::-;28831:10;28826:16;;;;:4;:16;;;;;;;;28818:46;;;;;-1:-1:-1;;;28818:46:0;;;;;;;;;;;;-1:-1:-1;;;28818:46:0;;;;;;;;;;;;;;;28893:4;;-1:-1:-1;;;;;28893:4:0;:18;28912:23;28925:9;28912:8;;;:12;:23::i;:::-;28893:43;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;28893:43:0;28883:53;;;28875:88;;;;;-1:-1:-1;;;28875:88:0;;;;;;;;;;;;-1:-1:-1;;;28875:88:0;;;;;;;;;;;;;;;29011:79;;;;;;;;;;;;;;;;;;;;29019:10;-1:-1:-1;29011:19:0;;;:7;:19;;;;;29039:4;29011:34;;;;;;;;;;:79;;29050:6;;29011:38;:79::i;:::-;28982:10;28974:19;;;;:7;:19;;;;;;;;29002:4;28974:34;;;;;;;:116;;;;-1:-1:-1;;;;;29101:15:0;;;;:7;:15;;;29119:3;29101:21;;29133:23;29109:6;29149;29133:7;:23::i;:::-;-1:-1:-1;;;;;29191:21:0;;;;;;:13;:21;;;;;;:33;;29217:6;29191:25;:33::i;:::-;-1:-1:-1;;;;;29167:21:0;;;;;;:13;:21;;;;;;;;;:57;;;;29240:69;;29288:12;29240:69;;;;;;;;;;29167:21;;29268:10;;29261:4;;29240:69;;;;;;;;28750:567;;:::o;35205:673::-;1926:1;2083:7;;:19;;2075:63;;;;;-1:-1:-1;;;2075:63:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;2075:63:0;;;;;;;;;;;;;;;1926:1;2148:7;:18;;;35292:10:::1;35281:22:::0;;:10:::1;:22;::::0;;;;;;;-1:-1:-1;;;;;35281:31:0;::::1;::::0;;;;;;;;:36;;::::1;::::0;:77:::1;;-1:-1:-1::0;35332:10:0::1;35321:22;::::0;;;:10:::1;:22;::::0;;;;;;;-1:-1:-1;;;;;35321:31:0;::::1;::::0;;;;;;;;35355:3:::1;-1:-1:-1::0;35281:77:0::1;35273:109;;;::::0;;-1:-1:-1;;;35273:109:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;35273:109:0;;;;;;;;;;;;;::::1;;35411:10;35402:20;::::0;;;:8:::1;:20;::::0;;;;;::::1;;35401:21;35393:52;;;::::0;;-1:-1:-1;;;35393:52:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;35393:52:0;;;;;;;;;;;;;::::1;;-1:-1:-1::0;;;;;35462:24:0;::::1;35481:4;35462:24;35458:250;;;35534:10;35546:28;::::0;;;:16:::1;:28;::::0;;;;;;;-1:-1:-1;;;;;35546:37:0;::::1;::::0;;;;;;;;35503:81:::1;::::0;35527:4:::1;::::0;35503:15:::1;:81::i;:::-;35458:250;;;35646:10;35658:28;::::0;;;:16:::1;:28;::::0;;;;;;;-1:-1:-1;;;;;35658:37:0;::::1;::::0;;;;;;;;;35617:79:::1;::::0;35646:10;35617:28:::1;:79::i;:::-;35737:10;35780:28;::::0;;;:16:::1;:28;::::0;;;;;;;-1:-1:-1;;;;;35780:37:0;::::1;::::0;;;;;;;;;35723:95;;35749:12:::1;35723:95:::0;;35763:15:::1;35723:95:::0;;::::1;::::0;;;;;;;;;;::::1;::::0;;;;;;;::::1;35846:10;35869:1;35829:28:::0;;;:16:::1;:28;::::0;;;;;;;-1:-1:-1;;;;;35829:37:0;;;::::1;::::0;;;;;;;;:41;;;1882:1;2187:22;;35205:673::o;24409:822::-;1926:1;2083:7;;:19;;2075:63;;;;;-1:-1:-1;;;2075:63:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;2075:63:0;;;;;;;;;;;;;;;1926:1;2148:7;:18;;;-1:-1:-1;;;;;24522:28:0;::::1;::::0;;:17:::1;:28;::::0;;;;;::::1;;24514:65;;;::::0;;-1:-1:-1;;;24514:65:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;24514:65:0;;;;;;;;;;;;;::::1;;24590:69;-1:-1:-1::0;;;;;24590:34:0;::::1;24625:10;24645:4;24652:6:::0;24590:34:::1;:69::i;:::-;24736:10;24718:29;::::0;;;:17:::1;:29;::::0;;;;;;;-1:-1:-1;;;;;24718:40:0;;::::1;::::0;;;;;;;;:45;;::::1;::::0;;;;;;;;:57:::1;::::0;24768:6;24718:49:::1;:57::i;:::-;24688:10;24670:29;::::0;;;:17:::1;:29;::::0;;;;;;;-1:-1:-1;;;;;24670:40:0;;::::1;::::0;;;;;;;;:45;;::::1;::::0;;;;;;;:105;24835:22:::1;:3;18097:6;24835:7;:22::i;:::-;24805:10;24788:28;::::0;;;:16:::1;:28;::::0;;;;;;;-1:-1:-1;;;;;24788:39:0;;::::1;::::0;;;;;;;;;:44;;::::1;::::0;;;;;;;;;:69;;;;24914:27;;;:15:::1;:27:::0;;;;;:38;;;;;;;;;:43;;;;;;;;;;:55:::1;::::0;24962:6;24914:47:::1;:55::i;:::-;24884:10;24868:27;::::0;;;:15:::1;:27;::::0;;;;;;;-1:-1:-1;;;;;24868:38:0;;::::1;::::0;;;;;;;;:43;;::::1;::::0;;;;;;;:101;;;;24987:4:::1;:9:::0;;;;::::1;;24986:10;:41:::0;::::1;;;-1:-1:-1::0;;;;;;25000:21:0;::::1;;::::0;;;:16:::1;:21;::::0;;;;;25024:3:::1;-1:-1:-1::0;24986:41:0::1;24982:167;;;25056:10;::::0;25044:39:::1;::::0;;-1:-1:-1;;;25044:39:0;;-1:-1:-1;;;;;25044:39:0;;::::1;;::::0;::::1;::::0;;;25056:10;;;::::1;::::0;25044:34:::1;::::0;:39;;;;;25056:10:::1;::::0;25044:39;;;;;;;25056:10;;25044:39;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;25122:15;17994:7;25122:3;:7;;:15;;;;:::i;:::-;-1:-1:-1::0;;;;;25098:21:0;::::1;;::::0;;;:16:::1;:21;::::0;;;;:39;24982:167:::1;25190:10;-1:-1:-1::0;;;;;25164:59:0::1;25179:9;-1:-1:-1::0;;;;;25164:59:0::1;25174:3;-1:-1:-1::0;;;;;25164:59:0::1;;25202:12;25216:6;25164:59;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;1882:1:0;2187:7;:22;-1:-1:-1;24409:822:0:o;36856:198::-;36931:10;;-1:-1:-1;;;;;36931:10:0;36917;:24;36909:50;;;;;-1:-1:-1;;;36909:50:0;;;;;;;;;;;;-1:-1:-1;;;36909:50:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;36970:16:0;;36989:5;36970:16;;;:8;:16;;;;;;;;;:24;;-1:-1:-1;;36970:24:0;;;37010:36;;37033:12;37010:36;;;;;;;;;;;;;;36856:198;:::o;9608:45::-;;;;;;;;;;;;-1:-1:-1;;;;;9608:45:0;;:::o;21105:25::-;;;-1:-1:-1;;;;;21105:25:0;;:::o;11380:95::-;11435:32;11445:10;11457:9;11435;:32::i;28618:124::-;28690:4;;28670:64;;28682:6;;-1:-1:-1;;;;;28690:4:0;:18;28709:23;28722:9;28709:8;;;:12;:23::i;:::-;28690:43;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;28690:43:0;28670:11;:64::i;17964:37::-;17994:7;17964:37;:::o;27183:673::-;27294:10;27275:30;;;;:18;:30;;;;;;;;-1:-1:-1;;;;;27275:41:0;;;;;;;;;;;:46;;;;;;;;;;;27267:81;;;;;-1:-1:-1;;;27267:81:0;;;;;;;;;;;;-1:-1:-1;;;27267:81:0;;;;;;;;;;;;;;;27386:10;27367:30;;;;:18;:30;;;;;;;;-1:-1:-1;;;;;27367:41:0;;;;;;;;;;;:46;;;;;;;;;;;27416:3;-1:-1:-1;27359:85:0;;;;;-1:-1:-1;;;27359:85:0;;;;;;;;;;;;-1:-1:-1;;;27359:85:0;;;;;;;;;;;;;;;27496:10;27455:12;27470:37;;;:25;:37;;;;;;;;-1:-1:-1;;;;;27470:48:0;;;;;;;;;;;;:53;;;;;;;;;;;;;27582:29;;;:17;:29;;;;;:40;;;;;;;;;:45;;;;;;;;;:58;;27470:53;27582:49;:58::i;:::-;27552:10;27534:29;;;;:17;:29;;;;;;;;-1:-1:-1;;;;;27534:40:0;;;;;;;;;;;;:45;;;;;;;;;;;;:106;;;;27651:37;;;:25;:37;;;;;:48;;;;;;;;:53;;;;;;;;;:57;27719:51;;27534:40;27762:7;27719:30;:51::i;:::-;27814:10;-1:-1:-1;;;;;27788:60:0;27803:9;-1:-1:-1;;;;;27788:60:0;27798:3;-1:-1:-1;;;;;27788:60:0;;27826:12;27840:7;27788:60;;;;;;;;;;;;;;;;;;;;;;;;27183:673;;;:::o;19738:59::-;;;;;;;;;;;;;;;;;;;;;;;;:::o;24114:177::-;24200:10;;-1:-1:-1;;;;;24200:10:0;24186;:24;24178:58;;;;;-1:-1:-1;;;24178:58:0;;;;;;;;;;;;-1:-1:-1;;;24178:58:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;24247:28:0;24278:5;24247:28;;;:17;:28;;;;;:36;;-1:-1:-1;;24247:36:0;;;24114:177::o;18620:68::-;;;;;;;;;;;;;;;;;;;;;;;;:::o;31390:93::-;31432:16;31468:7;31461:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;31461:14:0;;;;;;;;;;;;;;;;;;;;;;;31390:93;:::o;32343:130::-;32395:4;32423:9;32412:8;:20;-1:-1:-1;;;;;;32450:15:0;;;;;:7;:15;;;;;;;;;32343:130::o;21787:354::-;-1:-1:-1;;;;;21858:9:0;;;;;;:4;:9;;;;;;;;21850:40;;;;;-1:-1:-1;;;21850:40:0;;;;;;;;;;;;-1:-1:-1;;;21850:40:0;;;;;;;;;;;;;;;21901:9;21913:28;18219:5;21913:18;:9;18182:2;21913:13;:18::i;:28::-;21901:40;-1:-1:-1;21972:42:0;21994:19;:9;21901:40;21994:13;:19::i;:::-;-1:-1:-1;;;;;21972:12:0;;;;;;:7;:12;;;;;;;;18319:3;21972:17;;;;;;;;;:21;:42::i;:::-;-1:-1:-1;;;;;21952:12:0;;;;;;;:7;:12;;;;;;;;18319:3;21952:17;;;;;;;:62;;;;22033:10;22025:34;;22033:10;;;;;22025:34;;;;;22054:4;;22025:34;;21952:12;22025:34;22054:4;22033:10;22025:34;;;;;;;;;;;;;;;;;;;;-1:-1:-1;22077:56:0;;;22109:12;22077:56;;22123:9;22077:56;;;;;;22097:10;;-1:-1:-1;;;;;22077:56:0;;;18319:3;;22077:56;;;;;;;;;;;21787:354;;:::o;9875:49::-;;;;;;;;;;;;;;;:::o;38117:108::-;-1:-1:-1;;;;;38200:17:0;38176:4;38200:17;;;:8;:17;;;;;;;38117:108::o;36598:246::-;36672:10;;-1:-1:-1;;;;;36672:10:0;36658;:24;36650:48;;;;;-1:-1:-1;;;36650:48:0;;;;;;;;;;;;-1:-1:-1;;;36650:48:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;36709:15:0;;36727:5;36709:15;;;:7;:15;;;;;;;;:23;;-1:-1:-1;;36709:23:0;;;;;;36743:9;:17;;;;;:24;;;;;36709:23;36743:24;;;36807:5;:13;;;;;36792:4;36807:28;;;;;;;;;36778:58;;36792:4;36717:6;;36778:5;:58::i;20282:48::-;;;;;;;;;;;;;:::o;12327:1191::-;12406:4;12445:12;12431:11;:26;12423:53;;;;;-1:-1:-1;;;12423:53:0;;;;;;;;;;;;-1:-1:-1;;;12423:53:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;12511:23:0;;12489:19;12511:23;;;:14;:23;;;;;;;;12549:17;12545:58;;12590:1;12583:8;;;;;12545:58;-1:-1:-1;;;;;12663:20:0;;;;;;:11;:20;;;;;;;;:38;-1:-1:-1;;12684:16:0;;12663:38;;;;;;;;;:48;;:63;-1:-1:-1;12659:147:0;;-1:-1:-1;;;;;12750:20:0;;;;;;:11;:20;;;;;;;;-1:-1:-1;;12771:16:0;;;;12750:38;;;;;;;;12786:1;12750:44;;;-1:-1:-1;12743:51:0;;12659:147;-1:-1:-1;;;;;12867:20:0;;;;;;:11;:20;;;;;;;;:23;;;;;;;;:33;:23;:33;:47;-1:-1:-1;12863:88:0;;;12938:1;12931:8;;;;;12863:88;12963:12;-1:-1:-1;;13005:16:0;;13032:428;13047:5;13039:13;;:5;:13;;;13032:428;;;13111:1;13094:13;;;13093:19;;;13085:27;;13154:20;;:::i;:::-;-1:-1:-1;;;;;;13177:20:0;;;;;;:11;:20;;;;;;;;:28;;;;;;;;;;;;;13154:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13224:27;;13220:229;;;13279:8;;;;-1:-1:-1;13272:15:0;;-1:-1:-1;;;;13272:15:0;13220:229;13313:12;;:26;;;-1:-1:-1;13309:140:0;;;13368:6;13360:14;;13309:140;;;13432:1;13423:6;:10;13415:18;;13309:140;13032:428;;;;;-1:-1:-1;;;;;;13477:20:0;;;;;;:11;:20;;;;;;;;:27;;;;;;;;;;:33;;;;-1:-1:-1;;12327:1191:0;;;;:::o;10794:39::-;;;;;;;;;;;;;:::o;31494:197::-;31568:10;;-1:-1:-1;;;;;31568:10:0;31554;:24;31546:52;;;;;-1:-1:-1;;;31546:52:0;;;;;;;;;;;;-1:-1:-1;;;31546:52:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;31609:9:0;;31621:5;31609:9;;;:4;:9;;;;;;;;;:17;;-1:-1:-1;;31609:17:0;;;31642:41;;31658:12;31642:41;;31672:10;31642:41;;;;;;;;;;;;;;;;;;;;31494:197;:::o;18281:42::-;18319:3;18281:42;:::o;20142:97::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;22149:627::-;1926:1;2083:7;;:19;;2075:63;;;;;-1:-1:-1;;;2075:63:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;2075:63:0;;;;;;;;;;;;;;;1926:1;2148:7;:18;;;-1:-1:-1;;;;;22251:9:0;::::1;::::0;;:4:::1;:9;::::0;;;;;::::1;;22243:40;;;::::0;;-1:-1:-1;;;22243:40:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;22243:40:0;;;;;;;;;;;;;::::1;;22294:12;22316:6;-1:-1:-1::0;;;;;22309:24:0::1;;22342:4;22309:39;;;;;;;;;;;;;-1:-1:-1::0;;;;;22309:39:0::1;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;22309:39:0;;-1:-1:-1;22359:66:0::1;-1:-1:-1::0;;;;;22359:31:0;::::1;22391:10;22411:4;22418:6:::0;22359:31:::1;:66::i;:::-;22436:14;22453:52;22497:7;22460:6;-1:-1:-1::0;;;;;22453:24:0::1;;22486:4;22453:39;;;;;;;;;;;;;-1:-1:-1::0;;;;;22453:39:0::1;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;22453:39:0;;:43:::1;:52::i;:::-;22436:69:::0;-1:-1:-1;22516:9:0::1;22528:28;18219:5;22528:18;22436:69:::0;18182:2:::1;22528:13;:18::i;:28::-;22516:40:::0;-1:-1:-1;22590:45:0::1;22615:19;:9:::0;22516:40;22615:13:::1;:19::i;:::-;-1:-1:-1::0;;;;;22590:12:0;;::::1;;::::0;;;:7:::1;:12;::::0;;;;;;;:20;;::::1;::::0;;;;;;;;:24:::1;:45::i;:::-;-1:-1:-1::0;;;;;22567:12:0;;::::1;;::::0;;;:7:::1;:12;::::0;;;;;;;:20;;::::1;::::0;;;;;;;;:68;;;;22674:10;;22646:45:::1;::::0;22567:20;22674:10:::1;22686:4:::0;22646:27:::1;:45::i;:::-;22732:10;-1:-1:-1::0;;;;;22709:59:0::1;22727:3;-1:-1:-1::0;;;;;22709:59:0::1;22719:6;-1:-1:-1::0;;;;;22709:59:0::1;;22744:12;22758:9;22709:59;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;1882:1:0;2187:7;:22;-1:-1:-1;;;;22149:627:0:o;29329:409::-;29424:10;29419:16;;;;:4;:16;;;;;;;;29411:42;;;;;-1:-1:-1;;;29411:42:0;;;;;;;;;;;;-1:-1:-1;;;29411:42:0;;;;;;;;;;;;;;;29494:72;;;;;;;;;;;;;;;;;;;;29502:10;-1:-1:-1;29494:19:0;;;:7;:19;;;;;-1:-1:-1;;;;;29494:27:0;;;;;;;;;;;;:72;;29526:6;;29494:31;:72::i;:::-;29472:10;29464:19;;;;:7;:19;;;;;;;;-1:-1:-1;;;;;29464:27:0;;;;;;;;;;;;:102;;;;29577:15;;;;;:7;:15;;;;;29595:3;29577:21;;29609:43;;29585:6;29645;29609:27;:43::i;:::-;29668:62;;;29709:12;29668:62;;;;;;;;;;-1:-1:-1;;;;;29668:62:0;;;;29689:10;;29668:62;;;;;;;;;;;;;;29329:409;;;:::o;9308:37::-;;;;;;;;;;;;;;-1:-1:-1;;;9308:37:0;;;;:::o;18505:62::-;;;;;;;;;;;;;;;;;;;;;;;;:::o;27864:138::-;27933:10;;-1:-1:-1;;;;;27933:10:0;27919;:24;27911:47;;;;;-1:-1:-1;;;27911:47:0;;;;;;;;;;;;-1:-1:-1;;;27911:47:0;;;;;;;;;;;;;;;27975:10;;27969:25;;-1:-1:-1;;;;;27975:10:0;27987:6;27969:5;:25::i;18878:57::-;;;;;;;;;;;;;;;;;;;;;;;;:::o;33203:743::-;1926:1;2083:7;;:19;;2075:63;;;;;-1:-1:-1;;;2075:63:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;2075:63:0;;;;;;;;;;;;;;;1926:1;2148:7;:18;;;33299:10:::1;33289:21:::0;;:9:::1;:21;::::0;;;;;::::1;;33288:22;33280:52;;;::::0;;-1:-1:-1;;;33280:52:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;33280:52:0;;;;;;;;;;;;;::::1;;33375:13;:3;17880:6;33375:7;:13::i;:::-;33352:10;33343:20;::::0;;;:8:::1;:20;::::0;;;;;;;-1:-1:-1;;;;;33343:29:0;::::1;::::0;;;;;;;;:45;;;;33422:4:::1;33403:24;33399:354;;;33444:50;33460:10;33480:4;33487:6;33444:15;:50::i;:::-;33399:354;;;33527:12;33549:7;-1:-1:-1::0;;;;;33542:25:0::1;;33576:4;33542:40;;;;;;;;;;;;;-1:-1:-1::0;;;;;33542:40:0::1;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;33542:40:0;;-1:-1:-1;33597:67:0::1;-1:-1:-1::0;;;;;33597:32:0;::::1;33630:10;33650:4;33657:6:::0;33597:32:::1;:67::i;:::-;33688:53;33733:7;33695;-1:-1:-1::0;;;;;33688:25:0::1;;33722:4;33688:40;;;;;;;;;;;;;-1:-1:-1::0;;;;;33688:40:0::1;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;:53;33679:62;;33399:354;;33812:10;33799:24;::::0;;;:12:::1;:24;::::0;;;;;;;-1:-1:-1;;;;;33799:33:0;::::1;::::0;;;;;;;;:45:::1;::::0;33837:6;33799:37:::1;:45::i;:::-;33776:10;33763:24;::::0;;;:12:::1;:24;::::0;;;;;;;-1:-1:-1;;;;;33763:33:0;::::1;::::0;;;;;;;;;:81;;;;33900:20;;;:8:::1;:20:::0;;;;;:29;;;;;;;;;;;33860:78;;33886:12:::1;33860:78:::0;;;;::::1;::::0;;;;;;;;;33776:10;;33860:78:::1;::::0;;;;;;;;::::1;-1:-1:-1::0;;1882:1:0;2187:7;:22;33203:743::o;34825:368::-;34925:15;:3;17994:7;34925;:15::i;:::-;34902:10;34891:22;;;;:10;:22;;;;;;;;-1:-1:-1;;;;;34891:31:0;;;;;;;;;:49;;;;34951:36;;34914:7;;34980:6;34951:7;:36::i;:::-;35055:10;35038:28;;;;:16;:28;;;;;;;;-1:-1:-1;;;;;35038:37:0;;;;;;;;;;:49;;35080:6;35038:41;:49::i;:::-;35015:10;34998:28;;;;:16;:28;;;;;;;;-1:-1:-1;;;;;34998:37:0;;;;;;;;;;;:89;;;;35145:22;;;:10;:22;;;;;:31;;;;;;;;;;;35103:82;;35131:12;35103:82;;;;;;;;;;;;;;35015:10;;35103:82;;;;;;;;;;34825:368;;:::o;38239:147::-;38299:4;38316:40;38332:10;38344:3;38349:6;38316:15;:40::i;:::-;-1:-1:-1;38374:4:0;38239:147;;;;:::o;31872:170::-;31958:10;;-1:-1:-1;;;;;31958:10:0;31944;:24;31936:56;;;;;-1:-1:-1;;;31936:56:0;;;;;;;;;;;;-1:-1:-1;;;31936:56:0;;;;;;;;;;;;;;;32003:17;:31;;-1:-1:-1;;;;;;32003:31:0;-1:-1:-1;;;;;32003:31:0;;;;;;;;;;31872:170::o;19307:40::-;;;;;;;;;;;;;;;:::o;33959:99::-;34004:16;34040:10;34033:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;34033:17:0;;;;;;;;;;;;;;;;;;;;;;33959:99;:::o;12099:220::-;-1:-1:-1;;;;;12203:23:0;;12164:4;12203:23;;;:14;:23;;;;;;;;12244:16;:67;;12310:1;12244:67;;;-1:-1:-1;;;;;12263:20:0;;;;;;:11;:20;;;;;;;;:38;-1:-1:-1;;12284:16:0;;12263:38;;;;;;;;12299:1;12263:44;;12244:67;12237:74;12099:220;-1:-1:-1;;;12099:220:0:o;23811:295::-;23898:10;;-1:-1:-1;;;;;23898:10:0;23884;:24;23876:59;;;;;-1:-1:-1;;;23876:59:0;;;;;;;;;;;;-1:-1:-1;;;23876:59:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;23955:28:0;;;;;;:17;:28;;;;;;;;23954:29;23946:65;;;;;-1:-1:-1;;;23946:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;24022:28:0;;;;;:17;:28;;;;;:35;;-1:-1:-1;;24022:35:0;24053:4;24022:35;;;;;;24068:14;:30;;;;;;;;;;;;;;-1:-1:-1;;;;;;24068:30:0;;;;;;23811:295::o;20000:90::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;11483:604::-;11630:57;;;10428:65;11630:57;;;;;;;;-1:-1:-1;;;;;11630:57:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11620:68;;;;;;-1:-1:-1;;;11726:57:0;;;;11755:15;11726:57;;;;;;;;;;;;;;;;;;;;;;;;;;;11716:68;;;;;;;;;11599:18;11815:26;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11620:68;;11716;11599:18;;11815:26;;;;;;;-1:-1:-1;;11815:26:0;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;11815:26:0;;-1:-1:-1;;11815:26:0;;;-1:-1:-1;;;;;;;11860:23:0;;11852:54;;;;;-1:-1:-1;;;11852:54:0;;;;;;;;;;;;-1:-1:-1;;;11852:54:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;11934:17:0;;;;;;:6;:17;;;;;:19;;;;;;;;11925:28;;11917:61;;;;;-1:-1:-1;;;11917:61:0;;;;;;;;;;;;-1:-1:-1;;;11917:61:0;;;;;;;;;;;;;;;12004:6;11997:3;:13;;11989:48;;;;;-1:-1:-1;;;11989:48:0;;;;;;;;;;;;-1:-1:-1;;;11989:48:0;;;;;;;;;;;;;;;12048:31;12058:9;12069;12048;:31::i;:::-;11483:604;;;;;;;;;:::o;31111:267::-;31182:10;;-1:-1:-1;;;;;31182:10:0;31168;:24;31160:49;;;;;-1:-1:-1;;;31160:49:0;;;;;;;;;;;;-1:-1:-1;;;31160:49:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;31229:9:0;;;;;;:4;:9;;;;;;;;31228:10;31220:40;;;;;-1:-1:-1;;;31220:40:0;;;;;;;;;;;;-1:-1:-1;;;31220:40:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;31271:9:0;;;;;;:4;:9;;;;;;;;:16;;-1:-1:-1;;31271:16:0;31283:4;31271:16;;;;;;31298:7;:17;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;31298:17:0;;;;;31331:39;;31345:12;31331:39;;31359:10;31331:39;;;;;;;;;;;;;;;;;;;;31111:267;:::o;18155:29::-;18182:2;18155:29;:::o;23123:289::-;23214:10;;-1:-1:-1;;;;;23214:10:0;23200;:24;23192:51;;;;;-1:-1:-1;;;23192:51:0;;;;;;;;;;;;-1:-1:-1;;;23192:51:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;23269:12:0;;;;;;:5;:12;;;;;;:24;;23286:6;23269:16;:24::i;:::-;-1:-1:-1;;;;;23254:12:0;;;;;;:5;:12;;;;;:39;23318:11;;:23;;23334:6;23318:15;:23::i;:::-;23304:11;:37;-1:-1:-1;;;;;23367:16:0;;;;;;;:9;:16;;;;;;23352:52;;23367:16;;23397:6;23352:14;:52::i;:::-;23123:289;;:::o;19412:39::-;;;;;;;;;;;;;:::o;37433:676::-;-1:-1:-1;;;;;37643:13:0;;;37560:18;37643:13;;;:6;:13;;;;;;;;:15;;;;;;;;;37591:78;;10625:86;37591:78;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37581:89;;;;;;-1:-1:-1;;;37708:57:0;;;;37737:15;37708:57;;;;;;;;;;;;;;;;;;;;;;;;;;;37698:68;;;;;;;;;37797:26;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37581:89;;37698:68;;37643:15;;37797:26;;;;;37643:13;;-1:-1:-1;;37797:26:0;;;;;;;;;;37643:15;37797:26;;;;;;;;;;;;;;;-1:-1:-1;;37797:26:0;;-1:-1:-1;;37797:26:0;;;-1:-1:-1;;;;;;;37842:23:0;;37834:53;;;;;-1:-1:-1;;;37834:53:0;;;;;;;;;;;;-1:-1:-1;;;37834:53:0;;;;;;;;;;;;;;;37919:5;-1:-1:-1;;;;;37906:18:0;:9;-1:-1:-1;;;;;37906:18:0;;37898:51;;;;;-1:-1:-1;;;37898:51:0;;;;;;;;;;;;-1:-1:-1;;;37898:51:0;;;;;;;;;;;;;;;37975:8;37968:3;:15;;37960:43;;;;;-1:-1:-1;;;37960:43:0;;;;;;;;;;;;-1:-1:-1;;;37960:43:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;38016:17:0;;;;;;;:10;:17;;;;;;;;:26;;;;;;;;;;;;;:35;;;38069:32;;;;;;;;;;;;;;;;;37433:676;;;;;;;;;;:::o;23420:380::-;23510:10;;-1:-1:-1;;;;;23510:10:0;23496;:24;23488:55;;;;;-1:-1:-1;;;23488:55:0;;;;;;;;;;;;-1:-1:-1;;;23488:55:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;23562:9:0;;;;;;:4;:9;;;;;;;;23554:40;;;;;-1:-1:-1;;;23554:40:0;;;;;;;;;;;;-1:-1:-1;;;23554:40:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;23635:12:0;;;;;;:7;:12;;;;;;;;23656:4;23635:27;;;;;;;;:39;;23667:6;23635:31;:39::i;:::-;-1:-1:-1;;;;;23605:12:0;;;;;;:7;:12;;;;;;;;23626:4;23605:27;;;;;;;;:69;;;;23685:28;;23706:6;23685:5;:28::i;:::-;23729:63;;;23771:12;23729:63;;;;;;;;;;23759:10;;-1:-1:-1;;;;;23729:63:0;;;23747:4;;23729:63;;;;;;;;;;;23420:380;;:::o;19006:37::-;;;;;;;;;;;;;:::o;31699:161::-;31791:10;;-1:-1:-1;;;;;31791:10:0;31777;:24;31769:60;;;;;-1:-1:-1;;;31769:60:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;31840:4;:12;;-1:-1:-1;;;;;;31840:12:0;-1:-1:-1;;;;;31840:12:0;;;;;;;;;;31699:161::o;37067:136::-;-1:-1:-1;;;;;37167:19:0;;;37143:4;37167:19;;;:10;:19;;;;;;;;:28;;;;;;;;;;;;;37067:136::o;22784:328::-;22872:10;;-1:-1:-1;;;;;22872:10:0;22858;:24;22850:51;;;;;-1:-1:-1;;;22850:51:0;;;;;;;;;;;;-1:-1:-1;;;22850:51:0;;;;;;;;;;;;;;;22912:31;22922:5;22937:4;22912:9;:31::i;:::-;-1:-1:-1;;;;;22969:12:0;;;;;;:5;:12;;;;;;:24;;22986:6;22969:16;:24::i;:::-;-1:-1:-1;;;;;22954:12:0;;;;;;:5;:12;;;;;:39;23018:11;;:23;;23034:6;23018:15;:23::i;:::-;23004:11;:37;-1:-1:-1;;;;;23079:16:0;;;23075:1;23079:16;;;:9;:16;;;;;;23052:52;;23079:16;23097:6;23052:14;:52::i;18754:64::-;;;;;;;;;;;;;;;;;;;;;;;;:::o;19862:89::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;19199:41::-;;;;;;;;;;;;;:::o;36099:491::-;1926:1;2083:7;;:19;;2075:63;;;;;-1:-1:-1;;;2075:63:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;2075:63:0;;;;;;;;;;;;;;;1926:1;2148:7;:18;36212:10:::1;::::0;-1:-1:-1;;;;;36212:10:0::1;36198;:24;36190:48;;;::::0;;-1:-1:-1;;;36190:48:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;36190:48:0;;;;;;;;;;;;;::::1;;-1:-1:-1::0;;;;;36253:23:0;::::1;36271:4;36253:23;36249:186;;;36324:10;::::0;36293:50:::1;::::0;36317:4:::1;::::0;-1:-1:-1;;;;;36324:10:0::1;36336:6:::0;36293:15:::1;:50::i;:::-;36249:186;;;36404:10;::::0;36376:47:::1;::::0;-1:-1:-1;;;;;36376:27:0;;::::1;::::0;36404:10:::1;36416:6:::0;36376:27:::1;:47::i;:::-;36445:31;36453:6;36461;36469;36445:7;:31::i;:::-;-1:-1:-1::0;;;;;36487:16:0;::::1;36506:5;36487:16:::0;;;:8:::1;:16;::::0;;;;;;;;:24;;-1:-1:-1;;36487:24:0::1;::::0;;36527:55;;36561:12:::1;36527:55:::0;;;;::::1;::::0;;;;;36549:10:::1;::::0;36487:16;36527:55:::1;::::0;;;;;;::::1;-1:-1:-1::0;;1882:1:0;2187:7;:22;-1:-1:-1;36099:491:0:o;10382:111::-;10428:65;10382:111;:::o;21249:49::-;;;;;;;;;;;;;;;:::o;18191:33::-;18219:5;18191:33;:::o;20896:27::-;;;;;;;;;;9736:70;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;21137:32::-;;;-1:-1:-1;;;;;21137:32:0;;:::o;35891:196::-;35966:10;;-1:-1:-1;;;;;35966:10:0;35952;:24;35944:50;;;;;-1:-1:-1;;;35944:50:0;;;;;;;;;;;;-1:-1:-1;;;35944:50:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;36005:16:0;;;;;;:8;:16;;;;;;;;;:23;;-1:-1:-1;;36005:23:0;36024:4;36005:23;;;36044:35;;36066:12;36044:35;;;;;;;;;;;;;;35891:196;:::o;32848:344::-;32957:4;32985:9;32974:8;:20;-1:-1:-1;;;;;33012:15:0;;;;;;:7;:15;;;;;;;;:66;;;;-1:-1:-1;;;;;;33048:13:0;;;;;;;:5;:13;;;;;;;;:19;;;;;;;;;;:30;-1:-1:-1;33048:30:0;33012:66;:118;;;;-1:-1:-1;;;;;;33099:21:0;;;;;;:13;:21;;;;;;:31;-1:-1:-1;33099:31:0;33012:118;:172;;;;-1:-1:-1;;;;;;33159:17:0;;;;;;:9;:17;;;;;;33181:3;;33151:26;;:3;;:7;:26::i;:::-;:33;;33012:172;33005:179;32848:344;-1:-1:-1;;;;;;32848:344:0:o;20765:41::-;;;;;;;;;;;;;;;:::o;20375:88::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;24299:98::-;24339:16;24375:14;24368:21;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;24368:21:0;;;;;;;;;;;;;;;;;;;;;;24299:98;:::o;165:148::-;217:4;243:5;;;267:6;;;;259:25;;;;;-1:-1:-1;;;259:25:0;;;;;;;;;;;;-1:-1:-1;;;259:25:0;;;;;;;;;;;;;;795:208;847:4;867:6;863:47;;-1:-1:-1;897:1:0;890:8;;863:47;929:5;;;933:1;929;:5;:1;953:5;;;;;:10;945:29;;;;;-1:-1:-1;;;945:29:0;;;;;;;;;;;;-1:-1:-1;;;945:29:0;;;;;;;;;;;;;;1249:103;1301:4;1325:19;1329:1;1332;1325:19;;;;;;;;;;;;;-1:-1:-1;;;1325:19:0;;;:3;:19::i;28317:293::-;-1:-1:-1;;;;;28386:17:0;;28378:49;;;;;-1:-1:-1;;;28378:49:0;;;;;;;;;;;;-1:-1:-1;;;28378:49:0;;;;;;;;;;;;;;;28454:51;;;;;;;;;;;-1:-1:-1;;;28454:51:0;;;;;;;;-1:-1:-1;;;;;28454:13:0;;-1:-1:-1;28454:13:0;;;:8;:13;;;;;;;;:51;;28472:6;;28454:17;:51::i;:::-;-1:-1:-1;;;;;28438:13:0;;;;;;:8;:13;;;;;:67;28530:11;;:23;;28546:6;28530:15;:23::i;:::-;28516:11;:37;28569:33;;;;;;;;28591:1;;-1:-1:-1;;;;;28569:33:0;;;-1:-1:-1;;;;;;;;;;;28569:33:0;;;;;;;;28317:293;;:::o;503:103::-;555:4;579:19;583:1;586;579:19;;;;;;;;;;;;;-1:-1:-1;;;579:19:0;;;:3;:19::i;34356:457::-;-1:-1:-1;;;;;34432:17:0;;;;;;:9;:17;;;;;;34428:146;;-1:-1:-1;;;;;34469:17:0;;;;;;:9;:17;;;;;;;;34489:3;34469:23;;;;34505:10;:23;;;;;;;;;;;;-1:-1:-1;;;;;;34505:23:0;;;;;;;34541:7;:15;;;;;:21;34428:146;-1:-1:-1;;;;;34584:15:0;;;;;;;:7;:15;;;;;;;;:22;;-1:-1:-1;;34584:22:0;34602:4;34584:22;;;34640:12;:20;;;;;:29;;;;;;;;;;34617:53;;34623:7;;34592:6;;34617:5;:53::i;:::-;-1:-1:-1;;;;;34681:20:0;;;34713:1;34681:20;;;:12;:20;;;;;;;;:29;;;;;;;;;;;;:33;;;34782:13;;;:5;:13;;;;;:22;;;;;;;;;;;34730:75;;34751:12;34730:75;;34765:15;34730:75;;;;;;;;;;;;;34681:20;;34730:75;;;;;;;;;;34356:457;;:::o;611:180::-;691:4;724:12;716:6;;;;708:29;;;;-1:-1:-1;;;708:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;757:5:0;;;611:180::o;38959:435::-;-1:-1:-1;;;;;39051:17:0;;39043:59;;;;;-1:-1:-1;;;39043:59:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;39121:17:0;;39113:59;;;;;-1:-1:-1;;;39113:59:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;39201:61;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;39201:13:0;;-1:-1:-1;39201:13:0;;;:8;:13;;;;;;;;:61;;39219:6;;39201:17;:61::i;:::-;-1:-1:-1;;;;;39185:13:0;;;;;;;:8;:13;;;;;;;;:77;;;;39289:55;;;;;;;;;;;;;;;:13;;;;;;;;;;;:55;;39307:6;;39289:17;:55::i;:::-;-1:-1:-1;;;;;39273:13:0;;;;;;;:8;:13;;;;;;;;;:71;;;;39360:26;;;;;;;39273:13;;39360:26;;;;-1:-1:-1;;;;;;;;;;;39360:26:0;;;;;;;;38959:435;;;:::o;28102:207::-;28177:11;;:23;;28193:6;28177:15;:23::i;:::-;28163:11;:37;-1:-1:-1;;;;;28227:13:0;;;;;;:8;:13;;;;;;:25;;28245:6;28227:17;:25::i;:::-;-1:-1:-1;;;;;28211:13:0;;;;;;:8;:13;;;;;;;;:41;;;;28268:33;;;;;;;28211:13;;;;-1:-1:-1;;;;;;;;;;;28268:33:0;;;;;;;;;28102:207;;:::o;30134:309::-;-1:-1:-1;;;;;30230:12:0;;;;;;:5;:12;;;;;;;;30251:4;30230:27;;;;;;;;:40;;30262:7;30230:31;:40::i;:::-;-1:-1:-1;;;;;30200:12:0;;;;;;:5;:12;;;;;;;;30221:4;30200:27;;;;;;;:70;30295:11;;:24;;30311:7;30295:15;:24::i;:::-;30281:11;:38;-1:-1:-1;;;;;30357:16:0;;;30353:1;30357:16;;;:9;:16;;;;;;30330:53;;30357:16;30375:7;30330:14;:53::i;:::-;30399:36;;;;;;;;-1:-1:-1;;;;;30399:36:0;;;30408:10;;-1:-1:-1;;;;;;;;;;;30399:36:0;;;;;;;;30134:309;;:::o;3861:176::-;3970:58;;;-1:-1:-1;;;;;3970:58:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;3970:58:0;-1:-1:-1;;;3970:58:0;;;3944:85;;3963:5;;3944:18;:85::i;:::-;3861:176;;;:::o;4045:204::-;4172:68;;;-1:-1:-1;;;;;4172:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;4172:68:0;-1:-1:-1;;;4172:68:0;;;4146:95;;4165:5;;4146:18;:95::i;:::-;4045:204;;;;:::o;13526:407::-;-1:-1:-1;;;;;13629:20:0;;;13603:23;13629:20;;;:9;:20;;;;;;;;;13705:5;:16;;;;;13730:4;13705:31;;;;;;;;13684:16;;;:5;:16;;;;;;13629:20;;;13603:23;;13684:53;;:16;:20;:53::i;:::-;-1:-1:-1;;;;;13748:20:0;;;;;;;:9;:20;;;;;;:32;;-1:-1:-1;;;;;;13748:32:0;;;;;;;;;;13798:54;;13660:77;;-1:-1:-1;13748:32:0;13798:54;;;;;;13748:20;13798:54;13865:60;13880:15;13897:9;13908:16;13865:14;:60::i;30779:324::-;-1:-1:-1;;;;;30886:12:0;;;;;;;:5;:12;;;;;;;;:21;;;;;;;;;;:34;;30912:7;30886:25;:34::i;:::-;-1:-1:-1;;;;;30862:12:0;;;;;;;:5;:12;;;;;;;;:21;;;;;;;;;;;;:58;;;;30954:4;30935:24;30931:163;;;30990:11;;:24;;31006:7;30990:15;:24::i;:::-;30976:11;:38;-1:-1:-1;;;;;31044:16:0;;;;;;;:9;:16;;;;;;31029:53;;31044:16;;31074:7;13941:862;14044:6;-1:-1:-1;;;;;14034:16:0;:6;-1:-1:-1;;;;;14034:16:0;;;:30;;;;;14063:1;14054:6;:10;14034:30;14030:766;;;-1:-1:-1;;;;;14085:20:0;;;14081:357;;-1:-1:-1;;;;;14145:22:0;;14126:16;14145:22;;;:14;:22;;;;;;;;;14203:13;:60;;14262:1;14203:60;;;-1:-1:-1;;;;;14219:19:0;;;;;;:11;:19;;;;;;;;:34;-1:-1:-1;;14239:13:0;;14219:34;;;;;;;;14251:1;14219:40;;14203:60;14186:77;;14282:14;14299:47;14313:6;14299:47;;;;;;;;;;;;;-1:-1:-1;;;14299:47:0;;;:9;:13;;:47;;;;;:::i;:::-;14282:64;;14365:57;14382:6;14390:9;14401;14412;14365:16;:57::i;:::-;14081:357;;;;-1:-1:-1;;;;;14458:20:0;;;14454:331;;-1:-1:-1;;;;;14518:22:0;;14499:16;14518:22;;;:14;:22;;;;;;;;;14576:13;:60;;14635:1;14576:60;;;-1:-1:-1;;;;;14592:19:0;;;;;;:11;:19;;;;;;;;:34;-1:-1:-1;;14612:13:0;;14592:34;;;;;;;;14624:1;14592:40;;14576:60;14559:77;-1:-1:-1;14655:14:0;14672:21;14559:77;14686:6;14672:13;:21::i;:::-;14655:38;;14712:57;14729:6;14737:9;14748;14759;14712:16;:57::i;:::-;14454:331;;;13941:862;;;:::o;1356:177::-;1436:4;1468:12;1461:5;1453:28;;;;-1:-1:-1;;;1453:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1492:6;1505:1;1501;:5;;;;;;;1356:177;-1:-1:-1;;;;;1356:177:0:o;30451:320::-;-1:-1:-1;;;;;30556:12:0;;;;;;;:5;:12;;;;;;;;:21;;;;;;;;;;:34;;30582:7;30556:25;:34::i;:::-;-1:-1:-1;;;;;30532:12:0;;;;;;;:5;:12;;;;;;;;:21;;;;;;;;;;;;:58;;;;30624:4;30605:24;30601:163;;;30660:11;;:24;;30676:7;30660:15;:24::i;:::-;30646:11;:38;-1:-1:-1;;;;;30726:16:0;;;30722:1;30726:16;;;:9;:16;;;;;;30699:53;;30726:16;30744:7;30699:14;:53::i;318:180::-;398:4;424:5;;;456:12;448:6;;;;440:29;;;;-1:-1:-1;;;440:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;489:1:0;318:180;-1:-1:-1;;;;318:180:0:o;5270:614::-;5415:27;5423:5;-1:-1:-1;;;;;5415:25:0;;:27::i;:::-;5407:60;;;;;-1:-1:-1;;;5407:60:0;;;;;;;;;;;;-1:-1:-1;;;5407:60:0;;;;;;;;;;;;;;;5539:12;5553:23;5588:5;-1:-1:-1;;;;;5580:19:0;5600:4;5580:25;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;5580:25:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5538:67;;;;5624:7;5616:52;;;;;-1:-1:-1;;;5616:52:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5680:17;;:21;5676:201;;5822:10;5811:30;;;;;;;;;;;;;;;-1:-1:-1;5811:30:0;5803:62;;;;;-1:-1:-1;;;5803:62:0;;;;;;;;;;;;-1:-1:-1;;;5803:62:0;;;;;;;;;;;;;;14811:598;14925:18;14946:49;14953:12;14946:49;;;;;;;;;;;;;;;;;:6;:49::i;:::-;14925:70;;15025:1;15010:12;:16;;;:85;;;;-1:-1:-1;;;;;;15030:22:0;;;;;;:11;:22;;;;;;;;:65;-1:-1:-1;;15053:16:0;;15030:40;;;;;;;;;:50;:65;;;:50;;:65;15010:85;15006:329;;;-1:-1:-1;;;;;15110:22:0;;;;;;:11;:22;;;;;;;;:40;-1:-1:-1;;15133:16:0;;15110:40;;;;;;;;15148:1;15110:46;:57;;;15006:329;;;15235:33;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;15196:22:0;;-1:-1:-1;15196:22:0;;;:11;:22;;;;;:36;;;;;;;;;;:72;;;;;;;-1:-1:-1;;15196:72:0;;;;;;;;;;;;;15281:25;;;:14;:25;;;;;;:44;;15309:16;;;15281:44;;;;;;;;;;15006:329;15350:51;;;;;;;;;;;;;;-1:-1:-1;;;;;15350:51:0;;;;;;;;;;;14811:598;;;;;:::o;2930:374::-;2990:4;3213:20;;3056:66;3253:23;;;;;;:42;;-1:-1:-1;3280:15:0;;;3253:42;3245:51;2930:374;-1:-1:-1;;;;2930:374:0:o;15417:161::-;15492:6;15530:12;15523:5;15519:9;;15511:32;;;;-1:-1:-1;;;15511:32:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;15568:1:0;;15417:161;-1:-1:-1;;15417:161:0:o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;:::o

Swarm Source

ipfs://9c51e0d18472a02cbb0eed7523cd50390b329ae6f9055df69d0b264349e9bdd5
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.