Feature Tip: Add private address tag to any address under My Name Tag !
ERC-20
Overview
Max Total Supply
407.832033623618404183 RL3R
Holders
37
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
0.02290500000000581 RL3RValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
This contract may be a proxy contract. Click on More Options and select Is this a proxy? to confirm and enable the "Read as Proxy" & "Write as Proxy" tabs.
Contract Name:
Relay3rV1
Compiler Version
v0.6.12+commit.27d51765
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2020-11-09 */ // SPDX-License-Identifier: MIT pragma solidity ^0.6.12; // From https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/math/Math.sol // Subject to the MIT license. /** * @dev Wrappers over Solidity's arithmetic operations with added overflow * checks. * * Arithmetic operations in Solidity wrap on overflow. This can easily result * in bugs, because programmers usually assume that an overflow raises an * error, which is the standard behavior in high level programming languages. * `SafeMath` restores this intuition by reverting the transaction when an * operation overflows. * * Using this library instead of the unchecked operations eliminates an entire * class of bugs, so it's recommended to use it always. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, reverting on overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * - Addition cannot overflow. */ function add(uint a, uint b) internal pure returns (uint) { uint c = a + b; require(c >= a, "add: +"); return c; } /** * @dev Returns the addition of two unsigned integers, reverting with custom message on overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * - Addition cannot overflow. */ function add(uint a, uint b, string memory errorMessage) internal pure returns (uint) { uint c = a + b; require(c >= a, errorMessage); return c; } /** * @dev Returns the subtraction of two unsigned integers, reverting on underflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * - Subtraction cannot underflow. */ function sub(uint a, uint b) internal pure returns (uint) { return sub(a, b, "sub: -"); } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on underflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * - Subtraction cannot underflow. */ function sub(uint a, uint b, string memory errorMessage) internal pure returns (uint) { require(b <= a, errorMessage); uint c = a - b; return c; } /** * @dev Returns the multiplication of two unsigned integers, reverting on overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * - Multiplication cannot overflow. */ function mul(uint a, uint b) internal pure returns (uint) { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) { return 0; } uint c = a * b; require(c / a == b, "mul: *"); return c; } /** * @dev Returns the multiplication of two unsigned integers, reverting on overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * - Multiplication cannot overflow. */ function mul(uint a, uint b, string memory errorMessage) internal pure returns (uint) { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) { return 0; } uint c = a * b; require(c / a == b, errorMessage); return c; } /** * @dev Returns the integer division of two unsigned integers. * Reverts on division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * - The divisor cannot be zero. */ function div(uint a, uint b) internal pure returns (uint) { return div(a, b, "div: /"); } /** * @dev Returns the integer division of two unsigned integers. * Reverts with custom message on division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * - The divisor cannot be zero. */ function div(uint a, uint b, string memory errorMessage) internal pure returns (uint) { // Solidity only automatically asserts when dividing by 0 require(b > 0, errorMessage); uint c = a / b; // assert(a == b * c + a % b); // There is no case in which this doesn't hold return c; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * - The divisor cannot be zero. */ function mod(uint a, uint b) internal pure returns (uint) { return mod(a, b, "mod: %"); } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts with custom message when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * - The divisor cannot be zero. */ function mod(uint a, uint b, string memory errorMessage) internal pure returns (uint) { require(b != 0, errorMessage); return a % b; } } /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor () internal { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and make it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } } /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address sender, address recipient, uint256 amount) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); } /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // According to EIP-1052, 0x0 is the value returned for not-yet created accounts // and 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470 is returned // for accounts without code, i.e. `keccak256('')` bytes32 codehash; bytes32 accountHash = 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470; // solhint-disable-next-line no-inline-assembly assembly { codehash := extcodehash(account) } return (codehash != accountHash && codehash != 0x0); } /** * @dev Converts an `address` into `address payable`. Note that this is * simply a type cast: the actual underlying value is not changed. * * _Available since v2.4.0._ */ function toPayable(address account) internal pure returns (address payable) { return address(uint160(account)); } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. * * _Available since v2.4.0._ */ 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"); } } /** * @title SafeERC20 * @dev Wrappers around ERC20 operations that throw on failure (when the token * contract returns false). Tokens that return no value (and instead revert or * throw on failure) are also supported, non-reverting calls are assumed to be * successful. * To use this library you can add a `using SafeERC20 for ERC20;` statement to your contract, * which allows you to call the safe operations as `token.safeTransfer(...)`, etc. */ 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 { // safeApprove should only be called when setting an initial allowance, // or when resetting it to zero. To increase and decrease it, use // 'safeIncreaseAllowance' and 'safeDecreaseAllowance' // 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)); } /** * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement * on the return value: the return value is optional (but if data is returned, it must not be false). * @param token The token targeted by the call. * @param data The call data (encoded using abi.encode or one of its variants). */ function callOptionalReturn(IERC20 token, bytes memory data) private { // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since // we're implementing it ourselves. // A Solidity high level call has three parts: // 1. The target address is checked to verify it contains contract code // 2. The call itself is made, and success asserted // 3. The return value is decoded, which in turn checks the size of the returned data. // 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 Keep3rV1Library { 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 { 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); } interface IGovernance { function proposeJob(address job) external; } interface IKeep3rV1Helper { function getQuoteLimit(uint gasUsed) external view returns (uint); } // File: contracts/Keep3r.sol pragma solidity ^0.6.6; contract Relay3rV1 is ReentrancyGuard { using SafeMath for uint; using SafeERC20 for IERC20; /// @notice Keep3r Helper to set max prices for the ecosystem IKeep3rV1Helper public KPRH; /// @notice EIP-20 token name for this token string public constant name = "Relay3rV1"; /// @notice EIP-20 token symbol for this token string public constant symbol = "RL3R"; /// @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; } /** * @notice Delegate votes from `msg.sender` to `delegatee` * @param delegatee The address to delegate votes to */ function delegate(address delegatee) public { _delegate(msg.sender, delegatee); } /** * @notice Delegates votes from signatory to `delegatee` * @param delegatee The address to delegate votes to * @param nonce The contract state required to match the signature * @param expiry The time at which to expire the signature * @param v The recovery byte of the signature * @param r Half of the ECDSA signature pair * @param s Half of the ECDSA signature pair */ 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); } /** * @notice Gets the current votes balance for `account` * @param account The address to get votes balance * @return The number of current votes for `account` */ function getCurrentVotes(address account) external view returns (uint) { uint32 nCheckpoints = numCheckpoints[account]; return nCheckpoints > 0 ? checkpoints[account][nCheckpoints - 1].votes : 0; } /** * @notice Determine the prior number of votes for an account as of a block number * @dev Block number must be a finalized block or else this function will revert to prevent misinformation. * @param account The address of the account to check * @param blockNumber The block number to get the vote balance at * @return The number of votes the account had as of the given block */ 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); /// @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 Keeper rights approved to be spent by spender event KeeperRightApproval(address indexed owner, address indexed spender, bool allowed); /// @notice Keeper right transfered to a new address event KeeperRightTransfered(address indexed from, address indexed to, address indexed bond); /// @notice 3 days to bond to become a keeper uint public BOND = 3 days; /// @notice 14 days to unbond to remove funds from being a keeper uint public UNBOND = 14 days; /// @notice 3 days till liquidity can be bound uint public LIQUIDITYBOND = 3 days; /// @notice direct liquidity fee 0.3%,Can be modified by governance contract uint public FEE = 30; 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; /// @dev job proposal delay mapping(address => uint) internal jobProposalDelayInternal; /// @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; mapping(address => mapping (address => bool)) internal KeeperAllowances; mapping(address => mapping (address => mapping(address => bool))) internal KeeperAllowancesPassed; /// @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() public { // Set governance for this token governance = msg.sender; DOMAINSEPARATOR = keccak256(abi.encode(DOMAIN_TYPEHASH, keccak256(bytes(name)), _getChainId(), address(this))); } modifier onlyGovernance(){ require(msg.sender == governance); _; } /** * @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); } /** * @notice Add credit to a job to be paid out for work * @param credit the credit being assigned to the job * @param job the job being credited * @param amount the amount of credit being added to the job */ 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); } /** * @notice Add non transferable votes for governance * @param voter to add the votes to * @param amount of votes to add */ function addVotes(address voter, uint amount) external onlyGovernance{ votes[voter] = votes[voter].add(amount); totalBonded = totalBonded.add(amount); _moveDelegates(address(0), delegates[voter], amount); } /** * @notice Remove non transferable votes for governance * @param voter to subtract the votes * @param amount of votes to remove */ function removeVotes(address voter, uint amount) external onlyGovernance{ votes[voter] = votes[voter].sub(amount); totalBonded = totalBonded.sub(amount); _moveDelegates(delegates[voter], address(0), amount); } /** * @notice Add credit to a job to be paid out for work * @param job the job being credited * @param amount the amount of credit being added to the job */ function addRLRCredit(address job, uint amount) external onlyGovernance{ require(jobs[job], "addRLRCredit: !job"); credits[job][address(this)] = credits[job][address(this)].add(amount); emit AddCredit(address(this), job, msg.sender, block.number, amount); } /** * @notice Approve a liquidity pair for being accepted in future * @param liquidity the liquidity no longer accepted */ function approveLiquidity(address liquidity) external onlyGovernance{ require(!liquidityAccepted[liquidity], "approveLiquidity: !pair"); liquidityAccepted[liquidity] = true; liquidityPairs.push(liquidity); } /** * @notice Revoke a liquidity pair from being accepted in future * @param liquidity the liquidity no longer accepted */ function revokeLiquidity(address liquidity) external onlyGovernance{ liquidityAccepted[liquidity] = false; } /** * @notice Set new liquidity fee from governance * @param newFee the new fee for further liquidity adds */ function setLiquidityFee(uint newFee) external onlyGovernance{ FEE = newFee; } /** * @notice Set bonding delay from governance * @param newBond the new bonding delay */ function setBondingDelay(uint newBond) external onlyGovernance{ BOND = newBond; } /** * @notice Set bonding delay from governance * @param newUnbond the new unbonding delay */ function setUnbondingDelay(uint newUnbond) external onlyGovernance{ UNBOND = newUnbond; } /** * @notice Set liquidity bonding delay from governance * @param newLiqBond the new liquidity bonding delay */ function setLiquidityBondingDelay(uint newLiqBond) external onlyGovernance{ LIQUIDITYBOND = newLiqBond; } /** * @notice Displays all accepted liquidity pairs */ function pairs() external view returns (address[] memory) { return liquidityPairs; } /** * @notice Gets the job proposal delay with the current unbound delay */ function jobProposalDelay(address job) public view returns (uint){ return jobProposalDelayInternal[job].add(UNBOND); } /** * @notice Allows liquidity providers to submit jobs * @param liquidity the liquidity being added * @param job the job to assign credit to * @param amount the amount of liquidity tokens to use */ 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; liquidityAmount[msg.sender][liquidity][job] = liquidityAmount[msg.sender][liquidity][job].add(amount); if (!jobs[job] && jobProposalDelay(job) < now) { IGovernance(governance).proposeJob(job); jobProposalDelayInternal[job] = now; } emit SubmitJob(job, liquidity, msg.sender, block.number, amount); } /** * @notice Applies the credit provided in addLiquidityToJob to the job * @param provider the liquidity provider * @param liquidity the pair being added as liquidity * @param job the job that is receiving the credit */ function applyCreditToJob(address provider, address liquidity, address job) external { require(liquidityAccepted[liquidity], "applyCreditToJob: !pair"); require(liquidityApplied[provider][liquidity][job] != 0, "credit: no bond"); require(block.timestamp.sub(liquidityApplied[provider][liquidity][job].add(LIQUIDITYBOND)) >= 0, "credit: bonding"); uint _liquidity = Keep3rV1Library.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); } /** * @notice Unbond liquidity for a job * @param liquidity the pair being unbound * @param job the job being unbound from * @param amount the amount of liquidity being removed */ 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; 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 = Keep3rV1Library.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); } /** * @notice Allows liquidity providers to remove liquidity * @param liquidity the pair being unbound * @param job the job being unbound from */ function removeLiquidityFromJob(address liquidity, address job) external { require(liquidityUnbonding[msg.sender][liquidity][job] != 0, "removeJob: unbond"); require(block.timestamp.sub(liquidityUnbonding[msg.sender][liquidity][job].add(UNBOND)) >= 0, "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); } /** * @notice Allows governance to mint new tokens to treasury * @param amount the amount of tokens to mint to treasury */ function mint(uint amount) external onlyGovernance{ _mint(governance, amount); } /** * @notice burn owned tokens * @param amount the amount of tokens to burn */ function burn(uint amount) external { _burn(msg.sender, amount); } function _mint(address dst, uint amount) internal { // mint the amount totalSupply = totalSupply.add(amount); // transfer the amount to the recipient 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); } /** * @notice Implemented by jobs to show that a keeper performed work * @param keeper address of the keeper that performed the work */ function worked(address keeper) external { workReceipt(keeper, KPRH.getQuoteLimit(_gasUsed.sub(gasleft()))); } /** * @notice Implemented by jobs to show that a keeper performed work and get paid in ETH * @param keeper address of the keeper that performed the work */ function workedETH(address keeper) external { receiptETH(keeper, KPRH.getQuoteLimit(_gasUsed.sub(gasleft()))); } /** * @notice Implemented by jobs to show that a keeper performed work * @param keeper address of the keeper that performed the work * @param amount the reward that should be allocated */ 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: insuffcient funds"); lastJob[keeper] = now; _bond(address(this), keeper, amount); workCompleted[keeper] = workCompleted[keeper].add(amount); emit KeeperWorked(address(this), msg.sender, keeper, block.number); } /** * @notice Implemented by jobs to show that a keeper performed work * @param credit the asset being awarded to the keeper * @param keeper address of the keeper that performed the work * @param amount the reward that should be allocated */ 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: insuffcient funds"); lastJob[keeper] = now; IERC20(credit).safeTransfer(keeper, amount); emit KeeperWorked(credit, msg.sender, keeper, block.number); } /** * @notice Implemented by jobs to show that a keeper performed work * @param keeper address of the keeper that performed the work * @param amount the amount of ETH sent to the keeper */ function receiptETH(address keeper, uint amount) public { require(jobs[msg.sender], "receipt: !job"); credits[msg.sender][ETH] = credits[msg.sender][ETH].sub(amount, "workReceipt: insuffcient funds"); lastJob[keeper] = now; payable(keeper).transfer(amount); emit KeeperWorked(ETH, msg.sender, keeper, block.number); } 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); } } /** * @notice Allows governance to add new job systems * @param job address of the contract for which work should be performed */ function addJob(address job) external onlyGovernance{ require(!jobs[job], "addJob: job known"); jobs[job] = true; jobList.push(job); emit JobAdded(job, block.number, msg.sender); } /** * @notice Full listing of all jobs ever added * @return array blob */ function getJobs() external view returns (address[] memory) { return jobList; } /** * @notice Allows governance to remove a job from the systems * @param job address of the contract for which work should be performed */ function removeJob(address job) external onlyGovernance{ jobs[job] = false; emit JobRemoved(job, block.number, msg.sender); } /** * @notice Allows governance to change the Keep3rHelper for max spend * @param _kprh new helper address to set */ function setKeep3rHelper(address _kprh) external onlyGovernance{ KPRH = IKeep3rV1Helper(_kprh); } /** * @notice Allows governance to change governance (for future upgradability) * @param _governance new governance address to set */ function setGovernance(address _governance) external onlyGovernance{ pendingGovernance = _governance; } /** * @notice Allows pendingGovernance to accept their role as governance (protection pattern) */ function acceptGovernance() external { require(msg.sender == pendingGovernance, "acceptGovernance: !pendingGov"); governance = pendingGovernance; } /** * @notice confirms if the current keeper is registered, can be used for general (non critical) functions * @param keeper the keeper being investigated * @return true/false if the address is a keeper */ function isKeeper(address keeper) public returns (bool) { _gasUsed = gasleft(); return keepers[keeper]; } /** * @notice confirms if the current keeper is registered and has a minimum bond, should be used for protected functions * @param keeper the keeper being investigated * @param minBond the minimum requirement for the asset provided in bond * @param earned the total funds earned in the keepers lifetime * @param age the age of the keeper in the system * @return true/false if the address is a keeper and has more than the bond */ 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; } /** * @notice confirms if the current keeper is registered and has a minimum bond, should be used for protected functions * @param keeper the keeper being investigated * @param bond the bound asset being evaluated * @param minBond the minimum requirement for the asset provided in bond * @param earned the total funds earned in the keepers lifetime * @param age the age of the keeper in the system * @return true/false if the address is a keeper and has more than the bond */ 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; } /** * @notice begin the bonding process for a new keeper * @param bonding the asset being bound * @param amount the amount of bonding asset being bound */ function bond(address bonding, uint amount) external nonReentrant { require(!blacklist[msg.sender], "bond: blacklisted"); //In this part we changed the addition of current time + bond time to the time bond was called bondings[msg.sender][bonding] = now; 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); } /** * @notice get full list of keepers in the system */ function getKeepers() external view returns (address[] memory) { return keeperList; } /** * @notice Does initial data initialization of keeper entry * @param sender the address to init data for */ function doDataInit(address sender) internal { if (firstSeen[sender] == 0) { firstSeen[sender] = now; keeperList.push(sender); lastJob[sender] = now; } } /** * @notice allows a keeper to activate/register themselves after bonding * @param bonding the asset being activated as bond collateral */ function activate(address bonding) external { require(!blacklist[msg.sender], "activate: blacklisted"); //In this part we changed the check of bonding time being lesser than now to check if current time is > bonding time require(bondings[msg.sender][bonding] != 0 && block.timestamp.sub(bondings[msg.sender][bonding].add(BOND)) >= 0, "activate: bonding"); //Setup initial data doDataInit(msg.sender); keepers[msg.sender] = true; _bond(bonding, msg.sender, pendingbonds[msg.sender][bonding]); pendingbonds[msg.sender][bonding] = 0; emit KeeperBonded(msg.sender, block.number, block.timestamp, bonds[msg.sender][bonding]); } function doKeeperrightChecks(address from,address to,address bonding) internal returns (bool){ require(!blacklist[from], "transferKeeperRight: blacklisted"); require(isKeeper(from), "transferKeeperRight: not keeper"); require(msg.sender == from || KeeperAllowances[msg.sender][from],"transferKeeperRight: Unauthorized transfer call"); require(bondings[from][bonding] != 0 && block.timestamp.sub(bondings[from][bonding].add(BOND)) >= 0, "transferKeeperRight: bonding"); KeeperAllowancesPassed[from][to][bonding] = true; return true; } /** * @notice allows a keeper to transfer their keeper rights and bonds to another address * @param bonding the asset being transfered to new address as bond collateral * @param from the address keeper rights and bonding amount is transfered from * @param to the address keeper rights and bonding amount is transfered to */ function transferKeeperRight(address bonding,address from,address to) public { require(KeeperAllowancesPassed[from][to][bonding],"pass doKeeperrightChecks first"); doDataInit(to); //Set the user calling keeper stat to false keepers[from] = false; //Set the to addr keeper stat to true keepers[to] = true; //Unbond from sender uint currentbond = bonds[from][bonding]; _unbond(bonding,from,currentbond); //Bond to receiver _bond(bonding,to,currentbond); //Remove allowance passed after transfer KeeperAllowancesPassed[from][to][bonding] = false; //remove rights for this address after transfer is done from caller KeeperAllowances[from][msg.sender] = false; emit KeeperRightTransfered(from,to,bonding); } /** * @notice begin the unbonding process to stop being a keeper * @param bonding the asset being unbound * @param amount allows for partial unbonding */ function unbond(address bonding, uint amount) external { unbondings[msg.sender][bonding] = now; _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 getUnbondTime(address user,address bonding) public view returns (uint256){ // return unbondings[user][bonding].add(UNBOND); // } /** * @notice withdraw funds after unbonding has finished * @param bonding the asset to withdraw from the bonding pool */ function withdraw(address bonding) external nonReentrant { //Same changes as on bonding check is done here require(unbondings[msg.sender][bonding] != 0 && block.timestamp.sub(unbondings[msg.sender][bonding].add(UNBOND)) >= 0, "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; } /** * @notice allows governance to create a dispute for a given keeper * @param keeper the address in dispute */ function dispute(address keeper) external onlyGovernance{ disputes[keeper] = true; emit KeeperDispute(keeper, block.number); } /** * @notice allows governance to slash a keeper based on a dispute * @param bonded the asset being slashed * @param keeper the address being slashed * @param amount the amount being slashed */ function slash(address bonded, address keeper, uint amount) public nonReentrant onlyGovernance{ 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); } /** * @notice blacklists a keeper from participating in the network * @param keeper the address being slashed */ function revoke(address keeper) external onlyGovernance{ keepers[keeper] = false; blacklist[keeper] = true; slash(address(this), keeper, bonds[keeper][address(this)]); } /** * @notice allows governance to resolve a dispute on a keeper * @param keeper the address cleared */ function resolve(address keeper) external onlyGovernance{ disputes[keeper] = false; emit KeeperResolved(keeper, block.number); } /** * @notice Get the number of tokens `spender` is approved to spend on behalf of `account` * @param account The address of the account holding the funds * @param spender The address of the account spending the funds * @return The number of tokens approved */ function allowance(address account, address spender) external view returns (uint) { return allowances[account][spender]; } /** * @notice Approve `spender` to transfer up to `amount` from `src` * @dev This will overwrite the approval amount for `spender` * and is subject to issues noted [here](https://eips.ethereum.org/EIPS/eip-20#approve) * @param spender The address of the account which may transfer tokens * @param amount The number of tokens that are approved (2^256-1 means infinite) * @return Whether or not the approval succeeded */ function approve(address spender, uint amount) public returns (bool) { allowances[msg.sender][spender] = amount; emit Approval(msg.sender, spender, amount); return true; } /** * @notice Approve `spender` to transfer Keeper rights * @param spender The address of the account which may transfer keeper rights * @param fAllow whether this spender should be able to transfer rights * @return Whether or not the approval succeeded */ function keeperrightapprove(address spender,bool fAllow) public returns (bool) { KeeperAllowances[msg.sender][spender] = fAllow; emit KeeperRightApproval(msg.sender, spender, fAllow); return true; } /** * @notice Triggers an approval from owner to spends * @param owner The address to approve from * @param spender The address to be approved * @param amount The number of tokens that are approved (2^256-1 means infinite) * @param deadline The time at which to expire the signature * @param v The recovery byte of the signature * @param r Half of the ECDSA signature pair * @param s Half of the ECDSA signature pair */ 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); } /** * @notice Get the number of tokens held by the `account` * @param account The address of the account to get the balance of * @return The number of tokens held */ function balanceOf(address account) external view returns (uint) { return balances[account]; } /** * @notice Transfer `amount` tokens from `msg.sender` to `dst` * @param dst The address of the destination account * @param amount The number of tokens to transfer * @return Whether or not the transfer succeeded */ function transfer(address dst, uint amount) public returns (bool) { _transferTokens(msg.sender, dst, amount); return true; } /** * @notice Transfer `amount` tokens from `src` to `dst` * @param src The address of the source account * @param dst The address of the destination account * @param amount The number of tokens to transfer * @return Whether or not the transfer succeeded */ 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); balances[dst] = balances[dst].add(amount); emit Transfer(src, dst, amount); } function _getChainId() internal pure returns (uint) { uint chainId; assembly { chainId := chainid() } return chainId; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"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":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"bool","name":"allowed","type":"bool"}],"name":"KeeperRightApproval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"address","name":"bond","type":"address"}],"name":"KeeperRightTransfered","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"}],"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 IKeep3rV1Helper","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":"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":"job","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"addRLRCredit","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":"job","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":"spender","type":"address"},{"internalType":"bool","name":"fAllow","type":"bool"}],"name":"keeperrightapprove","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","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":"uint256","name":"newBond","type":"uint256"}],"name":"setBondingDelay","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_governance","type":"address"}],"name":"setGovernance","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_kprh","type":"address"}],"name":"setKeep3rHelper","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newLiqBond","type":"uint256"}],"name":"setLiquidityBondingDelay","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newFee","type":"uint256"}],"name":"setLiquidityFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newUnbond","type":"uint256"}],"name":"setUnbondingDelay","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":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"}],"name":"transferKeeperRight","outputs":[],"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"},{"inputs":[{"internalType":"address","name":"keeper","type":"address"}],"name":"workedETH","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60a060405260006002556203f48060095562127500600a556203f480600b55601e600c5560006013553480156200003557600080fd5b506001600055602680546001600160a01b0319163317905560408051808201909152600981526852656c61793372563160b81b6020909101527f797cfab58fcb15f590eb8e4252d5c228ff88f94f907e119e80c4393a946e8f357fc518f5bcee9358ae2f05790af9f62f6e1bba8b87ed4afe09247afa8fbacf7a7c620000ba6200010c565b3060405160200180858152602001848152602001838152602001826001600160a01b03168152602001945050505050604051602081830303815290604052805190602001206080818152505062000110565b4690565b608051615fd96200013560003980611e24528061452a52806149c75250615fd96000f3fe6080604052600436106105745760003560e01c806374a8f103116102d8578063c5198abc11610180578063e6941f5c116100e7578063f1127ed8116100a0578063f9d46cf21161007a578063f9d46cf2146118a4578063f9f92be4146118f3578063fede700814611926578063ffb0a4a01461196b57610574565b8063f1127ed8146117fd578063f39c38a01461185c578063f75f9f7b1461187157610574565b8063e6941f5c146116ee578063e74f823914611733578063e7a324dc14611776578063eb421f3b1461178b578063ec342ad0146117be578063ec4515dd146117d357610574565b8063d8bff5a511610139578063d8bff5a514611594578063dd62ed3e146115c7578063de63298d14611602578063deac35411461163b578063def7084414611676578063e326ac43146116bb57610574565b8063c5198abc14611447578063c57981b51461147a578063ce6a08801461148f578063cee625d3146114c8578063d454019d14611503578063d505accf1461153657610574565b8063a0712d681161023f578063b0103b1a116101f8578063b600702a116101d2578063b600702a14611366578063bb49096d14611399578063c1c1d218146113de578063c3cda520146113f357610574565b8063b0103b1a146112eb578063b105e39f1461131e578063b4b5ea571461133357610574565b8063a0712d68146111a8578063a39744b5146111d2578063a515366a1461120d578063a5d059ca14611246578063a9059cbb1461127f578063ab033ea9146112b857610574565b806383baa6931161029157806383baa6931461105a57806385f399661461109f57806388b4ac83146110d25780638d9acd2e1461111557806395d89b41146111585780639af772841461116d57610574565b806374a8f10314610f405780637724ff6814610f73578063782d6fe114610fa65780637ecebe0014610fdf57806380711989146110125780638322fff21461104557610574565b80633bbd64bc1161043b5780635c19a95c116103a257806367da31841161035b5780636dab5dcf116103355780636dab5dcf14610e685780636fcfff4514610e8e57806370a0823114610eda57806372da828a14610f0d57610574565b806367da318414610d9557806368581ebd14610dd05780636ba42aaa14610e3557610574565b80635c19a95c14610c715780635feeb79414610ca4578063603b4d1414610cd7578063603c686014610cec578063637cd7f014610d2757806364bb43ee14610d6257610574565b80634f039447116103f45780634f03944714610b5657806351cff8d914610b8057806352a4de2914610bb357806355ea6c4714610bf6578063587cde1e14610c295780635aa6e67514610c5c57610574565b80633bbd64bc14610a335780633d1f0bb914610a6657806342966c6814610a995780634395d8ba14610ac357806344d96e9514610b085780634b3fde2114610b1d57610574565b80631df0de13116104df578063278abc5e11610498578063278abc5e1461092b5780632fe23dbd1461096457806330adf81f1461098e578063313ce567146109a3578063357bf15c146109ce57806337feca84146109f857610574565b80631df0de131461082b5780631ff5f3da1461084057806320606b70146108855780632119a62a1461089a578063238efcbc146108d357806323b872dd146108e857610574565b80631778e29c116105315780631778e29c1461071a57806318160ddd146107415780631992d206146107565780631b44555e1461079b5780631b7a1fb2146107ce5780631c5a9d9c146107f857610574565b806302175fa41461057957806306fdde03146105a5578063095ea7b31461062f57806309aff02b1461067c5780630c33c522146106ad5780631101eb41146106d7575b600080fd5b34801561058557600080fd5b506105a36004803603602081101561059c57600080fd5b5035611980565b005b3480156105b157600080fd5b506105ba61199c565b6040805160208082528351818301528351919283929083019185019080838360005b838110156105f45781810151838201526020016105dc565b50505050905090810190601f1680156106215780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561063b57600080fd5b506106686004803603604081101561065257600080fd5b506001600160a01b0381351690602001356119c1565b604080519115158252519081900360200190f35b34801561068857600080fd5b50610691611a28565b604080516001600160a01b039092168252519081900360200190f35b3480156106b957600080fd5b50610691600480360360208110156106d057600080fd5b5035611a37565b3480156106e357600080fd5b506105a3600480360360608110156106fa57600080fd5b506001600160a01b03813581169160208101359091169060400135611a5e565b34801561072657600080fd5b5061072f611e22565b60408051918252519081900360200190f35b34801561074d57600080fd5b5061072f611e46565b34801561076257600080fd5b5061072f6004803603606081101561077957600080fd5b506001600160a01b038135811691602081013582169160409091013516611e4c565b3480156107a757600080fd5b5061072f600480360360208110156107be57600080fd5b50356001600160a01b0316611e6f565b3480156107da57600080fd5b50610691600480360360208110156107f157600080fd5b5035611e81565b34801561080457600080fd5b506105a36004803603602081101561081b57600080fd5b50356001600160a01b0316611e8e565b34801561083757600080fd5b5061072f612061565b34801561084c57600080fd5b506106686004803603608081101561086357600080fd5b506001600160a01b038135169060208101359060408101359060600135612067565b34801561089157600080fd5b5061072f612128565b3480156108a657600080fd5b506105a3600480360360408110156108bd57600080fd5b506001600160a01b03813516906020013561214c565b3480156108df57600080fd5b506105a36122a4565b3480156108f457600080fd5b506106686004803603606081101561090b57600080fd5b506001600160a01b03813581169160208101359091169060400135612327565b34801561093757600080fd5b506105a36004803603604081101561094e57600080fd5b506001600160a01b038135169060200135612409565b34801561097057600080fd5b506105a36004803603602081101561098757600080fd5b5035612515565b34801561099a57600080fd5b5061072f612531565b3480156109af57600080fd5b506109b8612555565b6040805160ff9092168252519081900360200190f35b3480156109da57600080fd5b506105a3600480360360208110156109f157600080fd5b503561255a565b348015610a0457600080fd5b5061072f60048036036040811015610a1b57600080fd5b506001600160a01b0381358116916020013516612576565b348015610a3f57600080fd5b5061066860048036036020811015610a5657600080fd5b50356001600160a01b0316612593565b348015610a7257600080fd5b5061066860048036036020811015610a8957600080fd5b50356001600160a01b03166125a7565b348015610aa557600080fd5b506105a360048036036020811015610abc57600080fd5b50356125bc565b348015610acf57600080fd5b506105a360048036036060811015610ae657600080fd5b506001600160a01b0381358116916020810135821691604090910135166125c9565b348015610b1457600080fd5b5061072f61293a565b348015610b2957600080fd5b506105a360048036036040811015610b4057600080fd5b506001600160a01b038135169060200135612940565b348015610b6257600080fd5b506105a360048036036020811015610b7957600080fd5b5035612b7b565b348015610b8c57600080fd5b506105a360048036036020811015610ba357600080fd5b50356001600160a01b0316612b97565b348015610bbf57600080fd5b506105a360048036036060811015610bd657600080fd5b506001600160a01b03813581169160208101359091169060400135612ded565b348015610c0257600080fd5b506105a360048036036020811015610c1957600080fd5b50356001600160a01b03166130ab565b348015610c3557600080fd5b5061069160048036036020811015610c4c57600080fd5b50356001600160a01b031661311a565b348015610c6857600080fd5b50610691613135565b348015610c7d57600080fd5b506105a360048036036020811015610c9457600080fd5b50356001600160a01b0316613144565b348015610cb057600080fd5b506105a360048036036020811015610cc757600080fd5b50356001600160a01b031661314e565b348015610ce357600080fd5b5061072f6131d7565b348015610cf857600080fd5b506105a360048036036040811015610d0f57600080fd5b506001600160a01b03813581169160200135166131dd565b348015610d3357600080fd5b5061072f60048036036040811015610d4a57600080fd5b506001600160a01b03813581169160200135166133f6565b348015610d6e57600080fd5b506105a360048036036020811015610d8557600080fd5b50356001600160a01b0316613413565b348015610da157600080fd5b5061072f60048036036040811015610db857600080fd5b506001600160a01b038135811691602001351661344b565b348015610ddc57600080fd5b50610de5613468565b60408051602080825283518183015283519192839290830191858101910280838360005b83811015610e21578181015183820152602001610e09565b505050509050019250505060405180910390f35b348015610e4157600080fd5b5061066860048036036020811015610e5857600080fd5b50356001600160a01b03166134ca565b6105a360048036036020811015610e7e57600080fd5b50356001600160a01b03166134ee565b348015610e9a57600080fd5b50610ec160048036036020811015610eb157600080fd5b50356001600160a01b0316613651565b6040805163ffffffff9092168252519081900360200190f35b348015610ee657600080fd5b5061072f60048036036020811015610efd57600080fd5b50356001600160a01b0316613669565b348015610f1957600080fd5b506105a360048036036020811015610f3057600080fd5b50356001600160a01b0316613684565b348015610f4c57600080fd5b506105a360048036036020811015610f6357600080fd5b50356001600160a01b03166136bd565b348015610f7f57600080fd5b5061072f60048036036020811015610f9657600080fd5b50356001600160a01b0316613726565b348015610fb257600080fd5b5061072f60048036036040811015610fc957600080fd5b506001600160a01b03813516906020013561374e565b348015610feb57600080fd5b5061072f6004803603602081101561100257600080fd5b50356001600160a01b031661395d565b34801561101e57600080fd5b506105a36004803603602081101561103557600080fd5b50356001600160a01b031661396f565b34801561105157600080fd5b506106916139e7565b34801561106657600080fd5b5061072f6004803603606081101561107d57600080fd5b506001600160a01b0381358116916020810135821691604090910135166139ec565b3480156110ab57600080fd5b506105a3600480360360208110156110c257600080fd5b50356001600160a01b0316613a0f565b3480156110de57600080fd5b506105a3600480360360608110156110f557600080fd5b506001600160a01b03813581169160208101359091169060400135613a98565b34801561112157600080fd5b506105a36004803603606081101561113857600080fd5b506001600160a01b03813581169160208101359091169060400135613d59565b34801561116457600080fd5b506105ba613e9e565b34801561117957600080fd5b5061072f6004803603604081101561119057600080fd5b506001600160a01b0381358116916020013516613ebe565b3480156111b457600080fd5b506105a3600480360360208110156111cb57600080fd5b5035613edb565b3480156111de57600080fd5b5061072f600480360360408110156111f557600080fd5b506001600160a01b0381358116916020013516613f08565b34801561121957600080fd5b506105a36004803603604081101561123057600080fd5b506001600160a01b038135169060200135613f25565b34801561125257600080fd5b506105a36004803603604081101561126957600080fd5b506001600160a01b0381351690602001356141a0565b34801561128b57600080fd5b50610668600480360360408110156112a257600080fd5b506001600160a01b038135169060200135614280565b3480156112c457600080fd5b506105a3600480360360208110156112db57600080fd5b50356001600160a01b0316614296565b3480156112f757600080fd5b506106686004803603602081101561130e57600080fd5b50356001600160a01b03166142cf565b34801561132a57600080fd5b50610de56142e4565b34801561133f57600080fd5b5061072f6004803603602081101561135657600080fd5b50356001600160a01b0316614344565b34801561137257600080fd5b506105a36004803603602081101561138957600080fd5b50356001600160a01b03166143a8565b3480156113a557600080fd5b5061072f600480360360608110156113bc57600080fd5b506001600160a01b038135811691602081013582169160409091013516614493565b3480156113ea57600080fd5b5061072f6144b6565b3480156113ff57600080fd5b506105a3600480360360c081101561141657600080fd5b506001600160a01b038135169060208101359060408101359060ff6060820135169060808101359060a001356144bc565b34801561145357600080fd5b506105a36004803603602081101561146a57600080fd5b50356001600160a01b03166146fa565b34801561148657600080fd5b5061072f614819565b34801561149b57600080fd5b506105a3600480360360408110156114b257600080fd5b506001600160a01b03813516906020013561481f565b3480156114d457600080fd5b50610668600480360360408110156114eb57600080fd5b506001600160a01b03813516906020013515156148ac565b34801561150f57600080fd5b5061072f6004803603602081101561152657600080fd5b50356001600160a01b031661491e565b34801561154257600080fd5b506105a3600480360360e081101561155957600080fd5b506001600160a01b03813581169160208101359091169060408101359060608101359060ff6080820135169060a08101359060c00135614930565b3480156115a057600080fd5b5061072f600480360360208110156115b757600080fd5b50356001600160a01b0316614bd4565b3480156115d357600080fd5b5061072f600480360360408110156115ea57600080fd5b506001600160a01b0381358116916020013516614be6565b34801561160e57600080fd5b506105a36004803603604081101561162557600080fd5b506001600160a01b038135169060200135614c11565b34801561164757600080fd5b5061072f6004803603604081101561165e57600080fd5b506001600160a01b0381358116916020013516614c99565b34801561168257600080fd5b5061072f6004803603606081101561169957600080fd5b506001600160a01b038135811691602081013582169160409091013516614cb6565b3480156116c757600080fd5b5061072f600480360360208110156116de57600080fd5b50356001600160a01b0316614cd9565b3480156116fa57600080fd5b506105a36004803603606081101561171157600080fd5b506001600160a01b038135811691602081013582169160409091013516614ceb565b34801561173f57600080fd5b506105a36004803603606081101561175657600080fd5b506001600160a01b03813581169160208101359091169060400135614e62565b34801561178257600080fd5b5061072f614f7d565b34801561179757600080fd5b50610668600480360360208110156117ae57600080fd5b50356001600160a01b0316614fa1565b3480156117ca57600080fd5b5061072f614fb6565b3480156117df57600080fd5b50610691600480360360208110156117f657600080fd5b5035614fbc565b34801561180957600080fd5b5061183c6004803603604081101561182057600080fd5b5080356001600160a01b0316906020013563ffffffff16614fc9565b6040805163ffffffff909316835260208301919091528051918290030190f35b34801561186857600080fd5b50610691614ff6565b34801561187d57600080fd5b506105a36004803603602081101561189457600080fd5b50356001600160a01b0316615005565b3480156118b057600080fd5b50610668600480360360a08110156118c757600080fd5b506001600160a01b03813581169160208101359091169060408101359060608101359060800135615077565b3480156118ff57600080fd5b506106686004803603602081101561191657600080fd5b50356001600160a01b0316615127565b34801561193257600080fd5b5061072f6004803603606081101561194957600080fd5b506001600160a01b03813581169160208101358216916040909101351661513c565b34801561197757600080fd5b50610de561515f565b6026546001600160a01b0316331461199757600080fd5b600955565b6040518060400160405280600981526020016852656c61793372563160b81b81525081565b3360008181526006602090815260408083206001600160a01b038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a35060015b92915050565b6001546001600160a01b031681565b60258181548110611a4457fe5b6000918252602090912001546001600160a01b0316905081565b336000908152601f602090815260408083206001600160a01b038781168552908352818420908616845290915290205415611ad9576040805162461bcd60e51b815260206004820152601660248201527518dc99591a5d0e881c195b991a5b99c818dc99591a5d60521b604482015290519081900360640190fd5b336000818152601b602090815260408083206001600160a01b03888116808652918452828520908816808652908452828520429055948452601c835281842090845282528083209383529290522054611b3290826151bf565b336000818152601c602090815260408083206001600160a01b03898116808652918452828520908916808652818552838620889055958552601a8452828520918552908352818420948452938252909120549190521015611bc45760405162461bcd60e51b815260040180806020018281038252602a815260200180615f53602a913960400191505060405180910390fd5b6040805163cbc3ab5360e01b81526001600160a01b03851660048201523060248201529051600091730582b7519b98d0f641f757552957715423caf9dc9163cbc3ab5391604480820192602092909190829003018186803b158015611c2857600080fd5b505af4158015611c3c573d6000803e3d6000fd5b505050506040513d6020811015611c5257600080fd5b5051604080516318160ddd60e01b81529051919250600091611cdb916001600160a01b038816916318160ddd91600480820192602092909190829003018186803b158015611c9f57600080fd5b505afa158015611cb3573d6000803e3d6000fd5b505050506040513d6020811015611cc957600080fd5b5051611cd58486615202565b9061525a565b6001600160a01b0385166000908152601960209081526040808320308452909152902054909150811115611d61576001600160a01b038416600090815260196020908152604080832030808552925290912054611d389190615285565b6001600160a01b0384166000908152601960209081526040808320308452909152812055611dbe565b611d6b3082615285565b6001600160a01b0384166000908152601960209081526040808320308452909152902054611d999082615398565b6001600160a01b03851660009081526019602090815260408083203084529091529020555b336001600160a01b0316856001600160a01b0316856001600160a01b03167f6d962fe34dd0cf9a9df3e12a7b8ddfe5f790b3f11668553455d7b52db70a07be4387604051808381526020018281526020019250505060405180910390a45050505050565b7f000000000000000000000000000000000000000000000000000000000000000081565b60025481565b601f60209081526000938452604080852082529284528284209052825290205481565b60176020526000908152604090205481565b60298181548110611a4457fe5b3360009081526021602052604090205460ff1615611eeb576040805162461bcd60e51b81526020600482015260156024820152741858dd1a5d985d194e88189b1858dadb1a5cdd1959605a1b604482015290519081900360640190fd5b336000908152600d602090815260408083206001600160a01b038516845290915290205415801590611f585750600954336000908152600d602090815260408083206001600160a01b03861684529091528120549091611f5591611f4e916151bf565b4290615398565b10155b611f9d576040805162461bcd60e51b815260206004820152601160248201527061637469766174653a20626f6e64696e6760781b604482015290519081900360640190fd5b611fa6336153c3565b33600081815260208080526040808320805460ff19166001179055601082528083206001600160a01b0386168452909152902054611fe5918391615448565b3360008181526010602090815260408083206001600160a01b0386168085529083528184208490558484526011835281842090845282529182902054825143815242928101929092528183015290517f3d80dd4660c08288217e88c2d45230220fcd3debf16898013243026e6a2aad059181900360600190a250565b600b5481565b60005a602a556001600160a01b038516600090815260208052604090205460ff1680156120cb57506001600160a01b038516600090815260126020908152604080832054601183528184203085529092529091205485916120c891906151bf565b10155b80156120ef57506001600160a01b0385166000908152601760205260409020548311155b801561211f57506001600160a01b038516600090815260146020526040902054829061211c904290615398565b10155b95945050505050565b7f797cfab58fcb15f590eb8e4252d5c228ff88f94f907e119e80c4393a946e8f3581565b3360009081526018602052604090205460ff166121a0576040805162461bcd60e51b815260206004820152600d60248201526c3932b1b2b4b83a1d1010b537b160991b604482015290519081900360640190fd5b604080518082018252601e81527f776f726b526563656970743a20696e737566666369656e742066756e6473000060208083019190915233600090815260198252838120600e825290915291909120546121fb9183906154e5565b336000908152601960209081526040808320600e84528252808320939093556001600160a01b0385168083526016909152828220429055915183156108fc0291849190818181858888f1935050505015801561225b573d6000803e3d6000fd5b506040805143815290516001600160a01b038416913391600e917fd69d6895f1cbbc2a1e10542c83168d399f926db003af0d96c372669aeda2faa3919081900360200190a45050565b6027546001600160a01b03163314612303576040805162461bcd60e51b815260206004820152601d60248201527f616363657074476f7665726e616e63653a202170656e64696e67476f76000000604482015290519081900360640190fd5b602754602680546001600160a01b0319166001600160a01b03909216919091179055565b6001600160a01b03831660008181526006602090815260408083203380855292528220549192909190821480159061236157506000198114155b156123f257600061238d85604051806060016040528060278152602001615f7d602791398491906154e5565b6001600160a01b0380891660008181526006602090815260408083209489168084529482529182902085905581518581529151949550929391927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92592918290030190a3505b6123fd86868661557c565b50600195945050505050565b6026546001600160a01b0316331461242057600080fd5b6001600160a01b03821660009081526018602052604090205460ff16612482576040805162461bcd60e51b815260206004820152601260248201527130b23229262921b932b234ba1d1010b537b160711b604482015290519081900360640190fd5b6001600160a01b03821660009081526019602090815260408083203084529091529020546124b090826151bf565b6001600160a01b03831660008181526019602090815260408083203080855290835292819020949094558351438152908101859052835133947fb97975ea9bf5ae2173b9ea765214622396032aba11cd5cc1450c760ac80d059a928290030190a45050565b6026546001600160a01b0316331461252c57600080fd5b600b55565b7f5fae9ec55a1e547936e0e74d606b44cd5f912f9adcd0bba561fea62d570259e981565b601281565b6026546001600160a01b0316331461257157600080fd5b600c55565b600d60209081526000928352604080842090915290825290205481565b602080526000908152604090205460ff1681565b60186020526000908152604090205460ff1681565b6125c63382615285565b50565b6001600160a01b03821660009081526028602052604090205460ff16612636576040805162461bcd60e51b815260206004820152601760248201527f6170706c79437265646974546f4a6f623a202170616972000000000000000000604482015290519081900360640190fd5b6001600160a01b038084166000908152601e6020908152604080832086851684528252808320938516835292905220546126a9576040805162461bcd60e51b815260206004820152600f60248201526e18dc99591a5d0e881b9bc8189bdb99608a1b604482015290519081900360640190fd5b600b546001600160a01b038085166000908152601e602090815260408083208785168452825280832093861683529290529081205490916126ed91611f4e916151bf565b1015612732576040805162461bcd60e51b815260206004820152600f60248201526e6372656469743a20626f6e64696e6760881b604482015290519081900360640190fd5b6040805163cbc3ab5360e01b81526001600160a01b03841660048201523060248201529051600091730582b7519b98d0f641f757552957715423caf9dc9163cbc3ab5391604480820192602092909190829003018186803b15801561279657600080fd5b505af41580156127aa573d6000803e3d6000fd5b505050506040513d60208110156127c057600080fd5b5051604080516318160ddd60e01b81529051919250600091612874916001600160a01b038716916318160ddd91600480820192602092909190829003018186803b15801561280d57600080fd5b505afa158015612821573d6000803e3d6000fd5b505050506040513d602081101561283757600080fd5b50516001600160a01b038088166000908152601f602090815260408083208a85168452825280832093891683529290522054611cd5908590615202565b905061288030826156e0565b6001600160a01b03831660009081526019602090815260408083203084529091529020546128ae90826151bf565b6001600160a01b038085166000818152601960209081526040808320308452825280832095909555898416808352601f8252858320948a168084529482528583208484528252858320929092558451438152908101869052845191947fa90666688fb32254f45a367c38fbcd5f2664432b061a4354d9d3c9a7abcbec5b92918290030190a45050505050565b60135481565b3360009081526018602052604090205460ff16612998576040805162461bcd60e51b81526020600482015260116024820152703bb7b935a932b1b2b4b83a1d1010b537b160791b604482015290519081900360640190fd5b6001546001600160a01b031663525ea6316129b65a602a5490615398565b6040518263ffffffff1660e01b81526004018082815260200191505060206040518083038186803b1580156129ea57600080fd5b505afa1580156129fe573d6000803e3d6000fd5b505050506040513d6020811015612a1457600080fd5b5051811115612a63576040805162461bcd60e51b81526020600482015260166024820152751ddbdc9ad49958d95a5c1d0e881b585e081b1a5b5a5d60521b604482015290519081900360640190fd5b604080518082018252601e81527f776f726b526563656970743a20696e737566666369656e742066756e64730000602080830191909152336000908152601982528381203082529091529190912054612abd9183906154e5565b33600090815260196020908152604080832030808552908352818420949094556001600160a01b038616835260169091529020429055612afe908383615448565b6001600160a01b038216600090815260176020526040902054612b2190826151bf565b6001600160a01b03831660008181526017602090815260409182902093909355805143815290519192339230927fd69d6895f1cbbc2a1e10542c83168d399f926db003af0d96c372669aeda2faa392908290030190a45050565b6026546001600160a01b03163314612b9257600080fd5b600a55565b60026000541415612bdd576040805162461bcd60e51b815260206004820152601f6024820152600080516020615f33833981519152604482015290519081900360640190fd5b60026000908155338152600e602090815260408083206001600160a01b038516845290915290205415801590612c475750600a54336000908152600e602090815260408083206001600160a01b03861684529091528120549091612c4491611f4e916151bf565b10155b612c8e576040805162461bcd60e51b815260206004820152601360248201527277697468647261773a20756e626f6e64696e6760681b604482015290519081900360640190fd5b3360009081526015602052604090205460ff1615612ce8576040805162461bcd60e51b815260206004820152601260248201527177697468647261773a20646973707574657360701b604482015290519081900360640190fd5b6001600160a01b038116301415612d2d57336000818152600f602090815260408083206001600160a01b0386168452909152902054612d2891309161557c565b612d5c565b336000818152600f602090815260408083206001600160a01b038616808552925290912054612d5c929061576b565b336000818152600f602090815260408083206001600160a01b038616845282529182902054825143815242928101929092528183015290517f095ae150bb74a0755c30809eb8d4aa810b63b66b9ca96a1945bbb03d809df2e99181900360600190a2336000908152600f602090815260408083206001600160a01b0394909416835292905290812081905560019055565b60026000541415612e33576040805162461bcd60e51b815260206004820152601f6024820152600080516020615f33833981519152604482015290519081900360640190fd5b600260009081556001600160a01b03841681526028602052604090205460ff16612ea4576040805162461bcd60e51b815260206004820152601860248201527f6164644c6971756964697479546f4a6f623a2021706169720000000000000000604482015290519081900360640190fd5b612eb96001600160a01b0384163330846157bd565b336000908152601a602090815260408083206001600160a01b0387811685529083528184209086168452909152902054612ef390826151bf565b336000818152601a602090815260408083206001600160a01b0389811680865291845282852090891680865290845282852096909655848452601e835281842081855283528184208685528352818420429055938352601f825280832093835292815282822093825292909252902054612f6d90826151bf565b336000908152601f602090815260408083206001600160a01b038881168552908352818420908716845282528083209390935560189052205460ff16158015612fbd575042612fbb83613726565b105b15613044576026546040805163dc380cbb60e01b81526001600160a01b0385811660048301529151919092169163dc380cbb91602480830192600092919082900301818387803b15801561301057600080fd5b505af1158015613024573d6000803e3d6000fd5b5050506001600160a01b0383166000908152601d60205260409020429055505b336001600160a01b0316836001600160a01b0316836001600160a01b03167fe1cb44a16adbd63a44f65c279b23b8f447b2c6e120a2bc7f004758b446e05ed14385604051808381526020018281526020019250505060405180910390a45050600160005550565b6026546001600160a01b031633146130c257600080fd5b6001600160a01b038116600081815260156020908152604091829020805460ff19169055815143815291517f7574a4a2c81b3099d59aaf15526ea966e1e2886afd21bf4a350af7af22db3a709281900390910190a250565b6003602052600090815260409020546001600160a01b031681565b6026546001600160a01b031681565b6125c6338261581d565b6001546125c69082906001600160a01b031663525ea6316131725a602a5490615398565b6040518263ffffffff1660e01b81526004018082815260200191505060206040518083038186803b1580156131a657600080fd5b505afa1580156131ba573d6000803e3d6000fd5b505050506040513d60208110156131d057600080fd5b5051612940565b600a5481565b336000908152601b602090815260408083206001600160a01b0386811685529083528184209085168452909152902054613252576040805162461bcd60e51b81526020600482015260116024820152701c995b5bdd99529bd88e881d5b989bdb99607a1b604482015290519081900360640190fd5b600a54336000908152601b602090815260408083206001600160a01b0387811685529083528184209086168452909152812054909161329491611f4e916151bf565b10156132de576040805162461bcd60e51b815260206004820152601460248201527372656d6f76654a6f623a20756e626f6e64696e6760601b604482015290519081900360640190fd5b336000818152601c602090815260408083206001600160a01b0387811680865291845282852090871680865290845282852054958552601a84528285209185529083528184209084529091529020546133379082615398565b336000818152601a602090815260408083206001600160a01b0389811680865291845282852090891680865290845282852096909655848452601c835281842081855283528184209584529490915281205561339491908361576b565b336001600160a01b0316836001600160a01b0316836001600160a01b03167fb69fc9f6d19ed402461251491f86c736bfcbe966e9584d3fb8a0057b313b69204385604051808381526020018281526020019250505060405180910390a4505050565b601960209081526000928352604080842090915290825290205481565b6026546001600160a01b0316331461342a57600080fd5b6001600160a01b03166000908152602860205260409020805460ff19169055565b600f60209081526000928352604080842090915290825290205481565b606060258054806020026020016040519081016040528092919081815260200182805480156134c057602002820191906000526020600020905b81546001600160a01b031681526001909101906020018083116134a2575b5050505050905090565b60005a602a55506001600160a01b0316600090815260208052604090205460ff1690565b6001600160a01b03811660009081526018602052604090205460ff16613550576040805162461bcd60e51b815260206004820152601260248201527130b23221b932b234ba22aa241d1010b537b160711b604482015290519081900360640190fd5b600061356d612710611cd5600c543461520290919063ffffffff16565b90506135a761357c3483615398565b6001600160a01b0384166000908152601960209081526040808320600e8452909152902054906151bf565b6001600160a01b038084166000908152601960209081526040808320600e8452909152808220939093556026549251929091169183156108fc0291849190818181858888f19350505050158015613602573d6000803e3d6000fd5b5060408051438152346020820152815133926001600160a01b03861692600e927fb97975ea9bf5ae2173b9ea765214622396032aba11cd5cc1450c760ac80d059a929181900390910190a45050565b60056020526000908152604090205463ffffffff1681565b6001600160a01b031660009081526007602052604090205490565b6026546001600160a01b0316331461369b57600080fd5b600180546001600160a01b0319166001600160a01b0392909216919091179055565b6026546001600160a01b031633146136d457600080fd5b6001600160a01b038116600090815260208080526040808320805460ff19908116909155602183528184208054909116600117905560118252808320308085529252909120546125c691908390614e62565b600a546001600160a01b0382166000908152601d60205260408120549091611a2291906151bf565b6000438210613795576040805162461bcd60e51b815260206004820152600e60248201526d33b2ba283934b7b92b37ba32b99d60911b604482015290519081900360640190fd5b6001600160a01b03831660009081526005602052604090205463ffffffff16806137c3576000915050611a22565b6001600160a01b038416600090815260046020908152604080832063ffffffff600019860181168552925290912054168310613832576001600160a01b03841660009081526004602090815260408083206000199490940163ffffffff16835292905220600101549050611a22565b6001600160a01b038416600090815260046020908152604080832083805290915290205463ffffffff1683101561386d576000915050611a22565b600060001982015b8163ffffffff168163ffffffff16111561392657600282820363ffffffff1604810361389f615f1b565b506001600160a01b038716600090815260046020908152604080832063ffffffff80861685529083529281902081518083019092528054909316808252600190930154918101919091529087141561390157602001519450611a229350505050565b805163ffffffff168711156139185781935061391f565b6001820392505b5050613875565b506001600160a01b038516600090815260046020908152604080832063ffffffff9094168352929052206001015491505092915050565b60086020526000908152604090205481565b6026546001600160a01b0316331461398657600080fd5b6001600160a01b038116600081815260186020908152604091829020805460ff191690558151438152339181019190915281517f2ca18fdfae50f1042480d285d21f6706aa6abbd567d60a044b5bec07ccfee648929181900390910190a250565b600e81565b601c60209081526000938452604080852082529284528284209052825290205481565b6001546125c69082906001600160a01b031663525ea631613a335a602a5490615398565b6040518263ffffffff1660e01b81526004018082815260200191505060206040518083038186803b158015613a6757600080fd5b505afa158015613a7b573d6000803e3d6000fd5b505050506040513d6020811015613a9157600080fd5b505161214c565b60026000541415613ade576040805162461bcd60e51b815260206004820152601f6024820152600080516020615f33833981519152604482015290519081900360640190fd5b600260009081556001600160a01b03831681526018602052604090205460ff16613b44576040805162461bcd60e51b815260206004820152601260248201527130b23221b932b234ba22aa241d1010b537b160711b604482015290519081900360640190fd5b6000836001600160a01b03166370a08231306040518263ffffffff1660e01b815260040180826001600160a01b0316815260200191505060206040518083038186803b158015613b9357600080fd5b505afa158015613ba7573d6000803e3d6000fd5b505050506040513d6020811015613bbd57600080fd5b50519050613bd66001600160a01b0385163330856157bd565b6000613c5b82866001600160a01b03166370a08231306040518263ffffffff1660e01b815260040180826001600160a01b0316815260200191505060206040518083038186803b158015613c2957600080fd5b505afa158015613c3d573d6000803e3d6000fd5b505050506040513d6020811015613c5357600080fd5b505190615398565b90506000613c7a612710611cd5600c548561520290919063ffffffff16565b9050613cb5613c898383615398565b6001600160a01b038088166000908152601960209081526040808320938c1683529290522054906151bf565b6001600160a01b0380871660009081526019602090815260408083208b8516808552925290912092909255602654613cef9291168361576b565b336001600160a01b0316856001600160a01b0316876001600160a01b03167fb97975ea9bf5ae2173b9ea765214622396032aba11cd5cc1450c760ac80d059a4386604051808381526020018281526020019250505060405180910390a45050600160005550505050565b3360009081526018602052604090205460ff16613dad576040805162461bcd60e51b815260206004820152600d60248201526c3932b1b2b4b83a1d1010b537b160991b604482015290519081900360640190fd5b604080518082018252601e81527f776f726b526563656970743a20696e737566666369656e742066756e64730000602080830191909152336000908152601982528381206001600160a01b03881682529091529190912054613e109183906154e5565b3360009081526019602090815260408083206001600160a01b0388811680865291845282852095909555938616835260169091529020429055613e5490838361576b565b6040805143815290516001600160a01b03808516923392918716917fd69d6895f1cbbc2a1e10542c83168d399f926db003af0d96c372669aeda2faa39181900360200190a4505050565b60405180604001604052806004815260200163292619a960e11b81525081565b600e60209081526000928352604080842090915290825290205481565b6026546001600160a01b03163314613ef257600080fd5b6026546125c6906001600160a01b0316826156e0565b601160209081526000928352604080842090915290825290205481565b60026000541415613f6b576040805162461bcd60e51b815260206004820152601f6024820152600080516020615f33833981519152604482015290519081900360640190fd5b600260009081553381526021602052604090205460ff1615613fc8576040805162461bcd60e51b8152602060048201526011602482015270189bdb990e88189b1858dadb1a5cdd1959607a1b604482015290519081900360640190fd5b336000908152600d602090815260408083206001600160a01b03861680855292529091204290553014156140065761400133308361557c565b6140ed565b6000826001600160a01b03166370a08231306040518263ffffffff1660e01b815260040180826001600160a01b0316815260200191505060206040518083038186803b15801561405557600080fd5b505afa158015614069573d6000803e3d6000fd5b505050506040513d602081101561407f57600080fd5b505190506140986001600160a01b0384163330856157bd565b6140e981846001600160a01b03166370a08231306040518263ffffffff1660e01b815260040180826001600160a01b0316815260200191505060206040518083038186803b158015613c2957600080fd5b9150505b3360009081526010602090815260408083206001600160a01b038616845290915290205461411b90826151bf565b3360008181526010602090815260408083206001600160a01b03881680855290835281842095909555838352600d82528083209483529381529083902054835143815291820152808301849052915190917fa150b7ad789014c0171a2873708daadbdbf87457d90d3896eaf0907e5b225ae4919081900360600190a250506001600055565b336000818152600e602090815260408083206001600160a01b038716845290915290204290556141d2908390836158cc565b336000908152600f602090815260408083206001600160a01b038616845290915290205461420090826151bf565b336000818152600f602090815260408083206001600160a01b03881680855290835281842095909555838352600e82528083209483529381529083902054835143815291820152808301849052915190917f50eca01e7e4362bc0279a45c4fbe68f263771dd3418b0a29c93008759f433b2e919081900360600190a25050565b600061428d33848461557c565b50600192915050565b6026546001600160a01b031633146142ad57600080fd5b602780546001600160a01b0319166001600160a01b0392909216919091179055565b60156020526000908152604090205460ff1681565b606060248054806020026020016040519081016040528092919081815260200182805480156134c0576020028201919060005260206000209081546001600160a01b031681526001909101906020018083116134a2575050505050905090565b6001600160a01b03811660009081526005602052604081205463ffffffff168061436f5760006143a1565b6001600160a01b038316600090815260046020908152604080832063ffffffff60001986011684529091529020600101545b9392505050565b6026546001600160a01b031633146143bf57600080fd5b6001600160a01b03811660009081526028602052604090205460ff161561442d576040805162461bcd60e51b815260206004820152601760248201527f617070726f76654c69717569646974793a202170616972000000000000000000604482015290519081900360640190fd5b6001600160a01b03166000818152602860205260408120805460ff191660019081179091556029805491820181559091527fcb7c14ce178f56e2e8d86ab33ebc0ae081ba8556a00cd122038841867181caac0180546001600160a01b0319169091179055565b601b60209081526000938452604080852082529284528284209052825290205481565b60095481565b604080517f1ac861a6a8532f3704e1768564a53a32774f00d6cf20ccbbdf60ab61378302bc6020808301919091526001600160a01b038916828401526060820188905260808083018890528351808403909101815260a08301845280519082012061190160f01b60c08401527f000000000000000000000000000000000000000000000000000000000000000060c284015260e2808401829052845180850390910181526101028401808652815191840191909120600091829052610122850180875281905260ff891661014286015261016285018890526101828501879052945191949390926001926101a280840193601f198301929081900390910190855afa1580156145cf573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b03811661462c576040805162461bcd60e51b815260206004820152601260248201527164656c656761746542795369673a2073696760701b604482015290519081900360640190fd5b6001600160a01b03811660009081526008602052604090208054600181019091558814614697576040805162461bcd60e51b815260206004820152601460248201527364656c656761746542795369673a206e6f6e636560601b604482015290519081900360640190fd5b864211156146e5576040805162461bcd60e51b815260206004820152601660248201527519195b1959d85d19509e54da59ce88195e1c1a5c995960521b604482015290519081900360640190fd5b6146ef818a61581d565b505050505050505050565b6026546001600160a01b0316331461471157600080fd5b6001600160a01b03811660009081526018602052604090205460ff1615614773576040805162461bcd60e51b815260206004820152601160248201527030b2322537b11d103537b11035b737bbb760791b604482015290519081900360640190fd5b6001600160a01b0381166000818152601860209081526040808320805460ff191660019081179091556025805491820181559093527f401968ff42a154441da5f6c4c935ac46b8671f0e062baaa62a7545ba53bb6e4c90920180546001600160a01b031916841790558151438152339181019190915281517f3d9884fbd11fce9188657c4bcfda7491d3316ce97bd234d981b7be1f012a852f929181900390910190a250565b600c5481565b6026546001600160a01b0316331461483657600080fd5b6001600160a01b0382166000908152601260205260409020546148599082615398565b6001600160a01b03831660009081526012602052604090205560135461487f9082615398565b6013556001600160a01b038083166000908152600360205260408120546148a892169083615961565b5050565b3360008181526022602090815260408083206001600160a01b038716808552908352818420805460ff1916871515908117909155825190815291519394909390927f3281318a7585797769bac96763acb79c8ce3f9eb3288b0a1ec70fff2a88bb396928290030190a350600192915050565b60166020526000908152604090205481565b6001600160a01b0380881660008181526008602090815260408083208054600180820190925582517f5fae9ec55a1e547936e0e74d606b44cd5f912f9adcd0bba561fea62d570259e98186015280840196909652958c166060860152608085018b905260a085019590955260c08085018a90528151808603909101815260e08501825280519083012061190160f01b6101008601527f000000000000000000000000000000000000000000000000000000000000000061010286015261012280860182905282518087039091018152610142860180845281519185019190912090859052610162860180845281905260ff8a166101828701526101a286018990526101c2860188905291519095919491926101e2808401939192601f1981019281900390910190855afa158015614a6b573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116614ac7576040805162461bcd60e51b81526020600482015260116024820152707065726d69743a207369676e617475726560781b604482015290519081900360640190fd5b896001600160a01b0316816001600160a01b031614614b24576040805162461bcd60e51b81526020600482015260146024820152731c195c9b5a5d0e881d5b985d5d1a1bdc9a5e995960621b604482015290519081900360640190fd5b86421115614b6b576040805162461bcd60e51b815260206004820152600f60248201526e1c195c9b5a5d0e88195e1c1a5c9959608a1b604482015290519081900360640190fd5b6001600160a01b03808b166000818152600660209081526040808320948e16808452948252918290208c905581518c815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a350505050505050505050565b60126020526000908152604090205481565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205490565b6026546001600160a01b03163314614c2857600080fd5b6001600160a01b038216600090815260126020526040902054614c4b90826151bf565b6001600160a01b038316600090815260126020526040902055601354614c7190826151bf565b6013556001600160a01b038083166000908152600360205260408120546148a8921683615961565b601060209081526000928352604080842090915290825290205481565b601a60209081526000938452604080852082529284528284209052825290205481565b60146020526000908152604090205481565b6001600160a01b038083166000908152602360209081526040808320858516845282528083209387168352929052205460ff16614d6f576040805162461bcd60e51b815260206004820152601e60248201527f7061737320646f4b65657065727269676874436865636b732066697273740000604482015290519081900360640190fd5b614d78816153c3565b6001600160a01b03808316600081815260208080526040808320805460ff1990811690915586861684528184208054909116600117905592825260118152828220938716825292909252902054614dd08484836158cc565b614ddb848383615448565b6001600160a01b038084166000818152602360209081526040808320878616808552908352818420958a16808552958352818420805460ff19908116909155858552602284528285203386529093528184208054909316909255519092917f8ea7d2aa01e1e73f355b1a92d0ceeead413bee462dcc66017c6aa115c75672d891a450505050565b60026000541415614ea8576040805162461bcd60e51b815260206004820152601f6024820152600080516020615f33833981519152604482015290519081900360640190fd5b60026000556026546001600160a01b03163314614ec457600080fd5b6001600160a01b038316301415614ef257602654614eed9030906001600160a01b03168361557c565b614f0c565b602654614f0c906001600160a01b0385811691168361576b565b614f178383836158cc565b6001600160a01b038216600081815260156020908152604091829020805460ff19169055815143815290810184905281513393927ff7e41ea76f0e7b22ba17dc4cc01fa75cff34ea24f5efe2874f5e175296259050928290030190a35050600160005550565b7f1ac861a6a8532f3704e1768564a53a32774f00d6cf20ccbbdf60ab61378302bc81565b60286020526000908152604090205460ff1681565b61271081565b60248181548110611a4457fe5b60046020908152600092835260408084209091529082529020805460019091015463ffffffff9091169082565b6027546001600160a01b031681565b6026546001600160a01b0316331461501c57600080fd5b6001600160a01b038116600081815260156020908152604091829020805460ff19166001179055815143815291517ffb2bdfce35c242f34d4f9633225d3c34a5892d5eae9ce102de6aac188dd25ba09281900390910190a250565b60005a602a556001600160a01b038616600090815260208052604090205460ff1680156150c957506001600160a01b038087166000908152601160209081526040808320938916835292905220548411155b80156150ed57506001600160a01b0386166000908152601760205260409020548311155b801561511d57506001600160a01b038616600090815260146020526040902054829061511a904290615398565b10155b9695505050505050565b60216020526000908152604090205460ff1681565b601e60209081526000938452604080852082529284528284209052825290205481565b606060298054806020026020016040519081016040528092919081815260200182805480156134c0576020028201919060005260206000209081546001600160a01b031681526001909101906020018083116134a2575050505050905090565b6000828201838110156143a1576040805162461bcd60e51b81526020600482015260066024820152656164643a202b60d01b604482015290519081900360640190fd5b60008261521157506000611a22565b8282028284828161521e57fe5b04146143a1576040805162461bcd60e51b815260206004820152600660248201526536bab61d101560d11b604482015290519081900360640190fd5b60006143a18383604051806040016040528060068152602001656469763a202f60d01b815250615adf565b6001600160a01b0382166152d6576040805162461bcd60e51b81526020600482015260136024820152725f6275726e3a207a65726f206164647265737360681b604482015290519081900360640190fd5b60408051808201825260168152755f6275726e3a20657863656564732062616c616e636560501b6020808301919091526001600160a01b03851660009081526007909152919091205461532a9183906154e5565b6001600160a01b0383166000908152600760205260409020556002546153509082615398565b6002556040805182815290516000916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b60006143a18383604051806040016040528060068152602001657375623a202d60d01b8152506154e5565b6001600160a01b0381166000908152601460205260409020546125c6576001600160a01b03166000818152601460209081526040808320429081905560248054600181019091557f7cd332d19b93bcabe3cce7ca0c18a052f57e5fd03b4758a09f30f5ddc4b22ec40180546001600160a01b0319169095179094556016909152902055565b6001600160a01b0380831660009081526011602090815260408083209387168352929052205461547890826151bf565b6001600160a01b038084166000908152601160209081526040808320938816808452939091529020919091553014156154e0576013546154b890826151bf565b6013556001600160a01b038083166000908152600360205260408120546154e0921683615961565b505050565b600081848411156155745760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015615539578181015183820152602001615521565b50505050905090810190601f1680156155665780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6001600160a01b0383166155d7576040805162461bcd60e51b815260206004820152601d60248201527f5f7472616e73666572546f6b656e733a207a65726f2061646472657373000000604482015290519081900360640190fd5b6001600160a01b038216615632576040805162461bcd60e51b815260206004820152601d60248201527f5f7472616e73666572546f6b656e733a207a65726f2061646472657373000000604482015290519081900360640190fd5b6001600160a01b0383166000908152600760205260409020546156559082615398565b6001600160a01b03808516600090815260076020526040808220939093559084168152205461568490826151bf565b6001600160a01b0380841660008181526007602090815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b6002546156ed90826151bf565b6002556001600160a01b03821660009081526007602052604090205461571390826151bf565b6001600160a01b03831660008181526007602090815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b1790526154e0908490615b44565b604080516001600160a01b0380861660248301528416604482015260648082018490528251808303909101815260849091019091526020810180516001600160e01b03166323b872dd60e01b179052615817908590615b44565b50505050565b6001600160a01b03808316600081815260036020908152604080832054601183528184203085528352818420549484526012909252822054931692909161586491906151bf565b6001600160a01b0385811660008181526003602052604080822080546001600160a01b031916898616908117909155905194955093928616927f3134e8a2e6d97e929a7e54011ea5485d7d196dd5f0ba4d4ef95803e8e3fc257f9190a4615817828483615961565b6001600160a01b038083166000908152601160209081526040808320938716835292905220546158fc9082615398565b6001600160a01b038084166000908152601160209081526040808320938816808452939091529020919091553014156154e05760135461593c9082615398565b6013556001600160a01b038083166000908152600360205260408120546154e0921690835b816001600160a01b0316836001600160a01b0316141580156159835750600081115b156154e0576001600160a01b03831615615a4e576001600160a01b03831660009081526005602052604081205463ffffffff1690816159c35760006159f5565b6001600160a01b038516600090815260046020908152604080832063ffffffff60001987011684529091529020600101545b90506000615a3c84604051806040016040528060168152602001755f6d6f7665566f7465733a20756e646572666c6f777360501b815250846154e59092919063ffffffff16565b9050615a4a86848484615cff565b5050505b6001600160a01b038216156154e0576001600160a01b03821660009081526005602052604081205463ffffffff169081615a89576000615abb565b6001600160a01b038416600090815260046020908152604080832063ffffffff60001987011684529091529020600101545b90506000615ac982856151bf565b9050615ad785848484615cff565b505050505050565b60008183615b2e5760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315615539578181015183820152602001615521565b506000838581615b3a57fe5b0495945050505050565b615b56826001600160a01b0316615e81565b615b9e576040805162461bcd60e51b815260206004820152601460248201527314d85999515490cc8c0e880858dbdb9d1c9858dd60621b604482015290519081900360640190fd5b60006060836001600160a01b0316836040518082805190602001908083835b60208310615bdc5780518252601f199092019160209182019101615bbd565b6001836020036101000a0380198251168184511680821785525050505050509050019150506000604051808303816000865af19150503d8060008114615c3e576040519150601f19603f3d011682016040523d82523d6000602084013e615c43565b606091505b509150915081615c9a576040805162461bcd60e51b815260206004820181905260248201527f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564604482015290519081900360640190fd5b80511561581757808060200190516020811015615cb657600080fd5b5051615817576040805162461bcd60e51b815260206004820152601360248201527214d85999515490cc8c0e88085cdd58d8d95959606a1b604482015290519081900360640190fd5b6000615d40436040518060400160405280601981526020017f5f7772697465436865636b706f696e743a203332206269747300000000000000815250615ebd565b905060008463ffffffff16118015615d8957506001600160a01b038516600090815260046020908152604080832063ffffffff6000198901811685529252909120548282169116145b15615dc6576001600160a01b038516600090815260046020908152604080832063ffffffff60001989011684529091529020600101829055615e37565b60408051808201825263ffffffff808416825260208083018681526001600160a01b038a166000818152600484528681208b8616825284528681209551865490861663ffffffff19918216178755925160019687015590815260059092529390208054928801909116919092161790555b604080518481526020810184905281516001600160a01b038816927fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a724928290030190a25050505050565b6000813f7fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470818114801590615eb557508115155b949350505050565b6000816401000000008410615f135760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315615539578181015183820152602001615521565b509192915050565b60408051808201909152600080825260208201529056fe5265656e7472616e637947756172643a207265656e7472616e742063616c6c00756e626f6e644c697175696469747946726f6d4a6f623a20696e73756666696369656e742066756e64737472616e7366657246726f6d3a2065786365656473207370656e64657220616c6c6f77616e6365a26469706673582212205bbc8c005f47a337e632e6340b106c762ee4daf267ed5a8f5db4cf82a9bbdd4c64736f6c634300060c0033
Deployed Bytecode
0x6080604052600436106105745760003560e01c806374a8f103116102d8578063c5198abc11610180578063e6941f5c116100e7578063f1127ed8116100a0578063f9d46cf21161007a578063f9d46cf2146118a4578063f9f92be4146118f3578063fede700814611926578063ffb0a4a01461196b57610574565b8063f1127ed8146117fd578063f39c38a01461185c578063f75f9f7b1461187157610574565b8063e6941f5c146116ee578063e74f823914611733578063e7a324dc14611776578063eb421f3b1461178b578063ec342ad0146117be578063ec4515dd146117d357610574565b8063d8bff5a511610139578063d8bff5a514611594578063dd62ed3e146115c7578063de63298d14611602578063deac35411461163b578063def7084414611676578063e326ac43146116bb57610574565b8063c5198abc14611447578063c57981b51461147a578063ce6a08801461148f578063cee625d3146114c8578063d454019d14611503578063d505accf1461153657610574565b8063a0712d681161023f578063b0103b1a116101f8578063b600702a116101d2578063b600702a14611366578063bb49096d14611399578063c1c1d218146113de578063c3cda520146113f357610574565b8063b0103b1a146112eb578063b105e39f1461131e578063b4b5ea571461133357610574565b8063a0712d68146111a8578063a39744b5146111d2578063a515366a1461120d578063a5d059ca14611246578063a9059cbb1461127f578063ab033ea9146112b857610574565b806383baa6931161029157806383baa6931461105a57806385f399661461109f57806388b4ac83146110d25780638d9acd2e1461111557806395d89b41146111585780639af772841461116d57610574565b806374a8f10314610f405780637724ff6814610f73578063782d6fe114610fa65780637ecebe0014610fdf57806380711989146110125780638322fff21461104557610574565b80633bbd64bc1161043b5780635c19a95c116103a257806367da31841161035b5780636dab5dcf116103355780636dab5dcf14610e685780636fcfff4514610e8e57806370a0823114610eda57806372da828a14610f0d57610574565b806367da318414610d9557806368581ebd14610dd05780636ba42aaa14610e3557610574565b80635c19a95c14610c715780635feeb79414610ca4578063603b4d1414610cd7578063603c686014610cec578063637cd7f014610d2757806364bb43ee14610d6257610574565b80634f039447116103f45780634f03944714610b5657806351cff8d914610b8057806352a4de2914610bb357806355ea6c4714610bf6578063587cde1e14610c295780635aa6e67514610c5c57610574565b80633bbd64bc14610a335780633d1f0bb914610a6657806342966c6814610a995780634395d8ba14610ac357806344d96e9514610b085780634b3fde2114610b1d57610574565b80631df0de13116104df578063278abc5e11610498578063278abc5e1461092b5780632fe23dbd1461096457806330adf81f1461098e578063313ce567146109a3578063357bf15c146109ce57806337feca84146109f857610574565b80631df0de131461082b5780631ff5f3da1461084057806320606b70146108855780632119a62a1461089a578063238efcbc146108d357806323b872dd146108e857610574565b80631778e29c116105315780631778e29c1461071a57806318160ddd146107415780631992d206146107565780631b44555e1461079b5780631b7a1fb2146107ce5780631c5a9d9c146107f857610574565b806302175fa41461057957806306fdde03146105a5578063095ea7b31461062f57806309aff02b1461067c5780630c33c522146106ad5780631101eb41146106d7575b600080fd5b34801561058557600080fd5b506105a36004803603602081101561059c57600080fd5b5035611980565b005b3480156105b157600080fd5b506105ba61199c565b6040805160208082528351818301528351919283929083019185019080838360005b838110156105f45781810151838201526020016105dc565b50505050905090810190601f1680156106215780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561063b57600080fd5b506106686004803603604081101561065257600080fd5b506001600160a01b0381351690602001356119c1565b604080519115158252519081900360200190f35b34801561068857600080fd5b50610691611a28565b604080516001600160a01b039092168252519081900360200190f35b3480156106b957600080fd5b50610691600480360360208110156106d057600080fd5b5035611a37565b3480156106e357600080fd5b506105a3600480360360608110156106fa57600080fd5b506001600160a01b03813581169160208101359091169060400135611a5e565b34801561072657600080fd5b5061072f611e22565b60408051918252519081900360200190f35b34801561074d57600080fd5b5061072f611e46565b34801561076257600080fd5b5061072f6004803603606081101561077957600080fd5b506001600160a01b038135811691602081013582169160409091013516611e4c565b3480156107a757600080fd5b5061072f600480360360208110156107be57600080fd5b50356001600160a01b0316611e6f565b3480156107da57600080fd5b50610691600480360360208110156107f157600080fd5b5035611e81565b34801561080457600080fd5b506105a36004803603602081101561081b57600080fd5b50356001600160a01b0316611e8e565b34801561083757600080fd5b5061072f612061565b34801561084c57600080fd5b506106686004803603608081101561086357600080fd5b506001600160a01b038135169060208101359060408101359060600135612067565b34801561089157600080fd5b5061072f612128565b3480156108a657600080fd5b506105a3600480360360408110156108bd57600080fd5b506001600160a01b03813516906020013561214c565b3480156108df57600080fd5b506105a36122a4565b3480156108f457600080fd5b506106686004803603606081101561090b57600080fd5b506001600160a01b03813581169160208101359091169060400135612327565b34801561093757600080fd5b506105a36004803603604081101561094e57600080fd5b506001600160a01b038135169060200135612409565b34801561097057600080fd5b506105a36004803603602081101561098757600080fd5b5035612515565b34801561099a57600080fd5b5061072f612531565b3480156109af57600080fd5b506109b8612555565b6040805160ff9092168252519081900360200190f35b3480156109da57600080fd5b506105a3600480360360208110156109f157600080fd5b503561255a565b348015610a0457600080fd5b5061072f60048036036040811015610a1b57600080fd5b506001600160a01b0381358116916020013516612576565b348015610a3f57600080fd5b5061066860048036036020811015610a5657600080fd5b50356001600160a01b0316612593565b348015610a7257600080fd5b5061066860048036036020811015610a8957600080fd5b50356001600160a01b03166125a7565b348015610aa557600080fd5b506105a360048036036020811015610abc57600080fd5b50356125bc565b348015610acf57600080fd5b506105a360048036036060811015610ae657600080fd5b506001600160a01b0381358116916020810135821691604090910135166125c9565b348015610b1457600080fd5b5061072f61293a565b348015610b2957600080fd5b506105a360048036036040811015610b4057600080fd5b506001600160a01b038135169060200135612940565b348015610b6257600080fd5b506105a360048036036020811015610b7957600080fd5b5035612b7b565b348015610b8c57600080fd5b506105a360048036036020811015610ba357600080fd5b50356001600160a01b0316612b97565b348015610bbf57600080fd5b506105a360048036036060811015610bd657600080fd5b506001600160a01b03813581169160208101359091169060400135612ded565b348015610c0257600080fd5b506105a360048036036020811015610c1957600080fd5b50356001600160a01b03166130ab565b348015610c3557600080fd5b5061069160048036036020811015610c4c57600080fd5b50356001600160a01b031661311a565b348015610c6857600080fd5b50610691613135565b348015610c7d57600080fd5b506105a360048036036020811015610c9457600080fd5b50356001600160a01b0316613144565b348015610cb057600080fd5b506105a360048036036020811015610cc757600080fd5b50356001600160a01b031661314e565b348015610ce357600080fd5b5061072f6131d7565b348015610cf857600080fd5b506105a360048036036040811015610d0f57600080fd5b506001600160a01b03813581169160200135166131dd565b348015610d3357600080fd5b5061072f60048036036040811015610d4a57600080fd5b506001600160a01b03813581169160200135166133f6565b348015610d6e57600080fd5b506105a360048036036020811015610d8557600080fd5b50356001600160a01b0316613413565b348015610da157600080fd5b5061072f60048036036040811015610db857600080fd5b506001600160a01b038135811691602001351661344b565b348015610ddc57600080fd5b50610de5613468565b60408051602080825283518183015283519192839290830191858101910280838360005b83811015610e21578181015183820152602001610e09565b505050509050019250505060405180910390f35b348015610e4157600080fd5b5061066860048036036020811015610e5857600080fd5b50356001600160a01b03166134ca565b6105a360048036036020811015610e7e57600080fd5b50356001600160a01b03166134ee565b348015610e9a57600080fd5b50610ec160048036036020811015610eb157600080fd5b50356001600160a01b0316613651565b6040805163ffffffff9092168252519081900360200190f35b348015610ee657600080fd5b5061072f60048036036020811015610efd57600080fd5b50356001600160a01b0316613669565b348015610f1957600080fd5b506105a360048036036020811015610f3057600080fd5b50356001600160a01b0316613684565b348015610f4c57600080fd5b506105a360048036036020811015610f6357600080fd5b50356001600160a01b03166136bd565b348015610f7f57600080fd5b5061072f60048036036020811015610f9657600080fd5b50356001600160a01b0316613726565b348015610fb257600080fd5b5061072f60048036036040811015610fc957600080fd5b506001600160a01b03813516906020013561374e565b348015610feb57600080fd5b5061072f6004803603602081101561100257600080fd5b50356001600160a01b031661395d565b34801561101e57600080fd5b506105a36004803603602081101561103557600080fd5b50356001600160a01b031661396f565b34801561105157600080fd5b506106916139e7565b34801561106657600080fd5b5061072f6004803603606081101561107d57600080fd5b506001600160a01b0381358116916020810135821691604090910135166139ec565b3480156110ab57600080fd5b506105a3600480360360208110156110c257600080fd5b50356001600160a01b0316613a0f565b3480156110de57600080fd5b506105a3600480360360608110156110f557600080fd5b506001600160a01b03813581169160208101359091169060400135613a98565b34801561112157600080fd5b506105a36004803603606081101561113857600080fd5b506001600160a01b03813581169160208101359091169060400135613d59565b34801561116457600080fd5b506105ba613e9e565b34801561117957600080fd5b5061072f6004803603604081101561119057600080fd5b506001600160a01b0381358116916020013516613ebe565b3480156111b457600080fd5b506105a3600480360360208110156111cb57600080fd5b5035613edb565b3480156111de57600080fd5b5061072f600480360360408110156111f557600080fd5b506001600160a01b0381358116916020013516613f08565b34801561121957600080fd5b506105a36004803603604081101561123057600080fd5b506001600160a01b038135169060200135613f25565b34801561125257600080fd5b506105a36004803603604081101561126957600080fd5b506001600160a01b0381351690602001356141a0565b34801561128b57600080fd5b50610668600480360360408110156112a257600080fd5b506001600160a01b038135169060200135614280565b3480156112c457600080fd5b506105a3600480360360208110156112db57600080fd5b50356001600160a01b0316614296565b3480156112f757600080fd5b506106686004803603602081101561130e57600080fd5b50356001600160a01b03166142cf565b34801561132a57600080fd5b50610de56142e4565b34801561133f57600080fd5b5061072f6004803603602081101561135657600080fd5b50356001600160a01b0316614344565b34801561137257600080fd5b506105a36004803603602081101561138957600080fd5b50356001600160a01b03166143a8565b3480156113a557600080fd5b5061072f600480360360608110156113bc57600080fd5b506001600160a01b038135811691602081013582169160409091013516614493565b3480156113ea57600080fd5b5061072f6144b6565b3480156113ff57600080fd5b506105a3600480360360c081101561141657600080fd5b506001600160a01b038135169060208101359060408101359060ff6060820135169060808101359060a001356144bc565b34801561145357600080fd5b506105a36004803603602081101561146a57600080fd5b50356001600160a01b03166146fa565b34801561148657600080fd5b5061072f614819565b34801561149b57600080fd5b506105a3600480360360408110156114b257600080fd5b506001600160a01b03813516906020013561481f565b3480156114d457600080fd5b50610668600480360360408110156114eb57600080fd5b506001600160a01b03813516906020013515156148ac565b34801561150f57600080fd5b5061072f6004803603602081101561152657600080fd5b50356001600160a01b031661491e565b34801561154257600080fd5b506105a3600480360360e081101561155957600080fd5b506001600160a01b03813581169160208101359091169060408101359060608101359060ff6080820135169060a08101359060c00135614930565b3480156115a057600080fd5b5061072f600480360360208110156115b757600080fd5b50356001600160a01b0316614bd4565b3480156115d357600080fd5b5061072f600480360360408110156115ea57600080fd5b506001600160a01b0381358116916020013516614be6565b34801561160e57600080fd5b506105a36004803603604081101561162557600080fd5b506001600160a01b038135169060200135614c11565b34801561164757600080fd5b5061072f6004803603604081101561165e57600080fd5b506001600160a01b0381358116916020013516614c99565b34801561168257600080fd5b5061072f6004803603606081101561169957600080fd5b506001600160a01b038135811691602081013582169160409091013516614cb6565b3480156116c757600080fd5b5061072f600480360360208110156116de57600080fd5b50356001600160a01b0316614cd9565b3480156116fa57600080fd5b506105a36004803603606081101561171157600080fd5b506001600160a01b038135811691602081013582169160409091013516614ceb565b34801561173f57600080fd5b506105a36004803603606081101561175657600080fd5b506001600160a01b03813581169160208101359091169060400135614e62565b34801561178257600080fd5b5061072f614f7d565b34801561179757600080fd5b50610668600480360360208110156117ae57600080fd5b50356001600160a01b0316614fa1565b3480156117ca57600080fd5b5061072f614fb6565b3480156117df57600080fd5b50610691600480360360208110156117f657600080fd5b5035614fbc565b34801561180957600080fd5b5061183c6004803603604081101561182057600080fd5b5080356001600160a01b0316906020013563ffffffff16614fc9565b6040805163ffffffff909316835260208301919091528051918290030190f35b34801561186857600080fd5b50610691614ff6565b34801561187d57600080fd5b506105a36004803603602081101561189457600080fd5b50356001600160a01b0316615005565b3480156118b057600080fd5b50610668600480360360a08110156118c757600080fd5b506001600160a01b03813581169160208101359091169060408101359060608101359060800135615077565b3480156118ff57600080fd5b506106686004803603602081101561191657600080fd5b50356001600160a01b0316615127565b34801561193257600080fd5b5061072f6004803603606081101561194957600080fd5b506001600160a01b03813581169160208101358216916040909101351661513c565b34801561197757600080fd5b50610de561515f565b6026546001600160a01b0316331461199757600080fd5b600955565b6040518060400160405280600981526020016852656c61793372563160b81b81525081565b3360008181526006602090815260408083206001600160a01b038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a35060015b92915050565b6001546001600160a01b031681565b60258181548110611a4457fe5b6000918252602090912001546001600160a01b0316905081565b336000908152601f602090815260408083206001600160a01b038781168552908352818420908616845290915290205415611ad9576040805162461bcd60e51b815260206004820152601660248201527518dc99591a5d0e881c195b991a5b99c818dc99591a5d60521b604482015290519081900360640190fd5b336000818152601b602090815260408083206001600160a01b03888116808652918452828520908816808652908452828520429055948452601c835281842090845282528083209383529290522054611b3290826151bf565b336000818152601c602090815260408083206001600160a01b03898116808652918452828520908916808652818552838620889055958552601a8452828520918552908352818420948452938252909120549190521015611bc45760405162461bcd60e51b815260040180806020018281038252602a815260200180615f53602a913960400191505060405180910390fd5b6040805163cbc3ab5360e01b81526001600160a01b03851660048201523060248201529051600091730582b7519b98d0f641f757552957715423caf9dc9163cbc3ab5391604480820192602092909190829003018186803b158015611c2857600080fd5b505af4158015611c3c573d6000803e3d6000fd5b505050506040513d6020811015611c5257600080fd5b5051604080516318160ddd60e01b81529051919250600091611cdb916001600160a01b038816916318160ddd91600480820192602092909190829003018186803b158015611c9f57600080fd5b505afa158015611cb3573d6000803e3d6000fd5b505050506040513d6020811015611cc957600080fd5b5051611cd58486615202565b9061525a565b6001600160a01b0385166000908152601960209081526040808320308452909152902054909150811115611d61576001600160a01b038416600090815260196020908152604080832030808552925290912054611d389190615285565b6001600160a01b0384166000908152601960209081526040808320308452909152812055611dbe565b611d6b3082615285565b6001600160a01b0384166000908152601960209081526040808320308452909152902054611d999082615398565b6001600160a01b03851660009081526019602090815260408083203084529091529020555b336001600160a01b0316856001600160a01b0316856001600160a01b03167f6d962fe34dd0cf9a9df3e12a7b8ddfe5f790b3f11668553455d7b52db70a07be4387604051808381526020018281526020019250505060405180910390a45050505050565b7f51bda7d21d58f344a3db7721f1d7de9e83ecd890ac75709320dc21bea5c313fd81565b60025481565b601f60209081526000938452604080852082529284528284209052825290205481565b60176020526000908152604090205481565b60298181548110611a4457fe5b3360009081526021602052604090205460ff1615611eeb576040805162461bcd60e51b81526020600482015260156024820152741858dd1a5d985d194e88189b1858dadb1a5cdd1959605a1b604482015290519081900360640190fd5b336000908152600d602090815260408083206001600160a01b038516845290915290205415801590611f585750600954336000908152600d602090815260408083206001600160a01b03861684529091528120549091611f5591611f4e916151bf565b4290615398565b10155b611f9d576040805162461bcd60e51b815260206004820152601160248201527061637469766174653a20626f6e64696e6760781b604482015290519081900360640190fd5b611fa6336153c3565b33600081815260208080526040808320805460ff19166001179055601082528083206001600160a01b0386168452909152902054611fe5918391615448565b3360008181526010602090815260408083206001600160a01b0386168085529083528184208490558484526011835281842090845282529182902054825143815242928101929092528183015290517f3d80dd4660c08288217e88c2d45230220fcd3debf16898013243026e6a2aad059181900360600190a250565b600b5481565b60005a602a556001600160a01b038516600090815260208052604090205460ff1680156120cb57506001600160a01b038516600090815260126020908152604080832054601183528184203085529092529091205485916120c891906151bf565b10155b80156120ef57506001600160a01b0385166000908152601760205260409020548311155b801561211f57506001600160a01b038516600090815260146020526040902054829061211c904290615398565b10155b95945050505050565b7f797cfab58fcb15f590eb8e4252d5c228ff88f94f907e119e80c4393a946e8f3581565b3360009081526018602052604090205460ff166121a0576040805162461bcd60e51b815260206004820152600d60248201526c3932b1b2b4b83a1d1010b537b160991b604482015290519081900360640190fd5b604080518082018252601e81527f776f726b526563656970743a20696e737566666369656e742066756e6473000060208083019190915233600090815260198252838120600e825290915291909120546121fb9183906154e5565b336000908152601960209081526040808320600e84528252808320939093556001600160a01b0385168083526016909152828220429055915183156108fc0291849190818181858888f1935050505015801561225b573d6000803e3d6000fd5b506040805143815290516001600160a01b038416913391600e917fd69d6895f1cbbc2a1e10542c83168d399f926db003af0d96c372669aeda2faa3919081900360200190a45050565b6027546001600160a01b03163314612303576040805162461bcd60e51b815260206004820152601d60248201527f616363657074476f7665726e616e63653a202170656e64696e67476f76000000604482015290519081900360640190fd5b602754602680546001600160a01b0319166001600160a01b03909216919091179055565b6001600160a01b03831660008181526006602090815260408083203380855292528220549192909190821480159061236157506000198114155b156123f257600061238d85604051806060016040528060278152602001615f7d602791398491906154e5565b6001600160a01b0380891660008181526006602090815260408083209489168084529482529182902085905581518581529151949550929391927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92592918290030190a3505b6123fd86868661557c565b50600195945050505050565b6026546001600160a01b0316331461242057600080fd5b6001600160a01b03821660009081526018602052604090205460ff16612482576040805162461bcd60e51b815260206004820152601260248201527130b23229262921b932b234ba1d1010b537b160711b604482015290519081900360640190fd5b6001600160a01b03821660009081526019602090815260408083203084529091529020546124b090826151bf565b6001600160a01b03831660008181526019602090815260408083203080855290835292819020949094558351438152908101859052835133947fb97975ea9bf5ae2173b9ea765214622396032aba11cd5cc1450c760ac80d059a928290030190a45050565b6026546001600160a01b0316331461252c57600080fd5b600b55565b7f5fae9ec55a1e547936e0e74d606b44cd5f912f9adcd0bba561fea62d570259e981565b601281565b6026546001600160a01b0316331461257157600080fd5b600c55565b600d60209081526000928352604080842090915290825290205481565b602080526000908152604090205460ff1681565b60186020526000908152604090205460ff1681565b6125c63382615285565b50565b6001600160a01b03821660009081526028602052604090205460ff16612636576040805162461bcd60e51b815260206004820152601760248201527f6170706c79437265646974546f4a6f623a202170616972000000000000000000604482015290519081900360640190fd5b6001600160a01b038084166000908152601e6020908152604080832086851684528252808320938516835292905220546126a9576040805162461bcd60e51b815260206004820152600f60248201526e18dc99591a5d0e881b9bc8189bdb99608a1b604482015290519081900360640190fd5b600b546001600160a01b038085166000908152601e602090815260408083208785168452825280832093861683529290529081205490916126ed91611f4e916151bf565b1015612732576040805162461bcd60e51b815260206004820152600f60248201526e6372656469743a20626f6e64696e6760881b604482015290519081900360640190fd5b6040805163cbc3ab5360e01b81526001600160a01b03841660048201523060248201529051600091730582b7519b98d0f641f757552957715423caf9dc9163cbc3ab5391604480820192602092909190829003018186803b15801561279657600080fd5b505af41580156127aa573d6000803e3d6000fd5b505050506040513d60208110156127c057600080fd5b5051604080516318160ddd60e01b81529051919250600091612874916001600160a01b038716916318160ddd91600480820192602092909190829003018186803b15801561280d57600080fd5b505afa158015612821573d6000803e3d6000fd5b505050506040513d602081101561283757600080fd5b50516001600160a01b038088166000908152601f602090815260408083208a85168452825280832093891683529290522054611cd5908590615202565b905061288030826156e0565b6001600160a01b03831660009081526019602090815260408083203084529091529020546128ae90826151bf565b6001600160a01b038085166000818152601960209081526040808320308452825280832095909555898416808352601f8252858320948a168084529482528583208484528252858320929092558451438152908101869052845191947fa90666688fb32254f45a367c38fbcd5f2664432b061a4354d9d3c9a7abcbec5b92918290030190a45050505050565b60135481565b3360009081526018602052604090205460ff16612998576040805162461bcd60e51b81526020600482015260116024820152703bb7b935a932b1b2b4b83a1d1010b537b160791b604482015290519081900360640190fd5b6001546001600160a01b031663525ea6316129b65a602a5490615398565b6040518263ffffffff1660e01b81526004018082815260200191505060206040518083038186803b1580156129ea57600080fd5b505afa1580156129fe573d6000803e3d6000fd5b505050506040513d6020811015612a1457600080fd5b5051811115612a63576040805162461bcd60e51b81526020600482015260166024820152751ddbdc9ad49958d95a5c1d0e881b585e081b1a5b5a5d60521b604482015290519081900360640190fd5b604080518082018252601e81527f776f726b526563656970743a20696e737566666369656e742066756e64730000602080830191909152336000908152601982528381203082529091529190912054612abd9183906154e5565b33600090815260196020908152604080832030808552908352818420949094556001600160a01b038616835260169091529020429055612afe908383615448565b6001600160a01b038216600090815260176020526040902054612b2190826151bf565b6001600160a01b03831660008181526017602090815260409182902093909355805143815290519192339230927fd69d6895f1cbbc2a1e10542c83168d399f926db003af0d96c372669aeda2faa392908290030190a45050565b6026546001600160a01b03163314612b9257600080fd5b600a55565b60026000541415612bdd576040805162461bcd60e51b815260206004820152601f6024820152600080516020615f33833981519152604482015290519081900360640190fd5b60026000908155338152600e602090815260408083206001600160a01b038516845290915290205415801590612c475750600a54336000908152600e602090815260408083206001600160a01b03861684529091528120549091612c4491611f4e916151bf565b10155b612c8e576040805162461bcd60e51b815260206004820152601360248201527277697468647261773a20756e626f6e64696e6760681b604482015290519081900360640190fd5b3360009081526015602052604090205460ff1615612ce8576040805162461bcd60e51b815260206004820152601260248201527177697468647261773a20646973707574657360701b604482015290519081900360640190fd5b6001600160a01b038116301415612d2d57336000818152600f602090815260408083206001600160a01b0386168452909152902054612d2891309161557c565b612d5c565b336000818152600f602090815260408083206001600160a01b038616808552925290912054612d5c929061576b565b336000818152600f602090815260408083206001600160a01b038616845282529182902054825143815242928101929092528183015290517f095ae150bb74a0755c30809eb8d4aa810b63b66b9ca96a1945bbb03d809df2e99181900360600190a2336000908152600f602090815260408083206001600160a01b0394909416835292905290812081905560019055565b60026000541415612e33576040805162461bcd60e51b815260206004820152601f6024820152600080516020615f33833981519152604482015290519081900360640190fd5b600260009081556001600160a01b03841681526028602052604090205460ff16612ea4576040805162461bcd60e51b815260206004820152601860248201527f6164644c6971756964697479546f4a6f623a2021706169720000000000000000604482015290519081900360640190fd5b612eb96001600160a01b0384163330846157bd565b336000908152601a602090815260408083206001600160a01b0387811685529083528184209086168452909152902054612ef390826151bf565b336000818152601a602090815260408083206001600160a01b0389811680865291845282852090891680865290845282852096909655848452601e835281842081855283528184208685528352818420429055938352601f825280832093835292815282822093825292909252902054612f6d90826151bf565b336000908152601f602090815260408083206001600160a01b038881168552908352818420908716845282528083209390935560189052205460ff16158015612fbd575042612fbb83613726565b105b15613044576026546040805163dc380cbb60e01b81526001600160a01b0385811660048301529151919092169163dc380cbb91602480830192600092919082900301818387803b15801561301057600080fd5b505af1158015613024573d6000803e3d6000fd5b5050506001600160a01b0383166000908152601d60205260409020429055505b336001600160a01b0316836001600160a01b0316836001600160a01b03167fe1cb44a16adbd63a44f65c279b23b8f447b2c6e120a2bc7f004758b446e05ed14385604051808381526020018281526020019250505060405180910390a45050600160005550565b6026546001600160a01b031633146130c257600080fd5b6001600160a01b038116600081815260156020908152604091829020805460ff19169055815143815291517f7574a4a2c81b3099d59aaf15526ea966e1e2886afd21bf4a350af7af22db3a709281900390910190a250565b6003602052600090815260409020546001600160a01b031681565b6026546001600160a01b031681565b6125c6338261581d565b6001546125c69082906001600160a01b031663525ea6316131725a602a5490615398565b6040518263ffffffff1660e01b81526004018082815260200191505060206040518083038186803b1580156131a657600080fd5b505afa1580156131ba573d6000803e3d6000fd5b505050506040513d60208110156131d057600080fd5b5051612940565b600a5481565b336000908152601b602090815260408083206001600160a01b0386811685529083528184209085168452909152902054613252576040805162461bcd60e51b81526020600482015260116024820152701c995b5bdd99529bd88e881d5b989bdb99607a1b604482015290519081900360640190fd5b600a54336000908152601b602090815260408083206001600160a01b0387811685529083528184209086168452909152812054909161329491611f4e916151bf565b10156132de576040805162461bcd60e51b815260206004820152601460248201527372656d6f76654a6f623a20756e626f6e64696e6760601b604482015290519081900360640190fd5b336000818152601c602090815260408083206001600160a01b0387811680865291845282852090871680865290845282852054958552601a84528285209185529083528184209084529091529020546133379082615398565b336000818152601a602090815260408083206001600160a01b0389811680865291845282852090891680865290845282852096909655848452601c835281842081855283528184209584529490915281205561339491908361576b565b336001600160a01b0316836001600160a01b0316836001600160a01b03167fb69fc9f6d19ed402461251491f86c736bfcbe966e9584d3fb8a0057b313b69204385604051808381526020018281526020019250505060405180910390a4505050565b601960209081526000928352604080842090915290825290205481565b6026546001600160a01b0316331461342a57600080fd5b6001600160a01b03166000908152602860205260409020805460ff19169055565b600f60209081526000928352604080842090915290825290205481565b606060258054806020026020016040519081016040528092919081815260200182805480156134c057602002820191906000526020600020905b81546001600160a01b031681526001909101906020018083116134a2575b5050505050905090565b60005a602a55506001600160a01b0316600090815260208052604090205460ff1690565b6001600160a01b03811660009081526018602052604090205460ff16613550576040805162461bcd60e51b815260206004820152601260248201527130b23221b932b234ba22aa241d1010b537b160711b604482015290519081900360640190fd5b600061356d612710611cd5600c543461520290919063ffffffff16565b90506135a761357c3483615398565b6001600160a01b0384166000908152601960209081526040808320600e8452909152902054906151bf565b6001600160a01b038084166000908152601960209081526040808320600e8452909152808220939093556026549251929091169183156108fc0291849190818181858888f19350505050158015613602573d6000803e3d6000fd5b5060408051438152346020820152815133926001600160a01b03861692600e927fb97975ea9bf5ae2173b9ea765214622396032aba11cd5cc1450c760ac80d059a929181900390910190a45050565b60056020526000908152604090205463ffffffff1681565b6001600160a01b031660009081526007602052604090205490565b6026546001600160a01b0316331461369b57600080fd5b600180546001600160a01b0319166001600160a01b0392909216919091179055565b6026546001600160a01b031633146136d457600080fd5b6001600160a01b038116600090815260208080526040808320805460ff19908116909155602183528184208054909116600117905560118252808320308085529252909120546125c691908390614e62565b600a546001600160a01b0382166000908152601d60205260408120549091611a2291906151bf565b6000438210613795576040805162461bcd60e51b815260206004820152600e60248201526d33b2ba283934b7b92b37ba32b99d60911b604482015290519081900360640190fd5b6001600160a01b03831660009081526005602052604090205463ffffffff16806137c3576000915050611a22565b6001600160a01b038416600090815260046020908152604080832063ffffffff600019860181168552925290912054168310613832576001600160a01b03841660009081526004602090815260408083206000199490940163ffffffff16835292905220600101549050611a22565b6001600160a01b038416600090815260046020908152604080832083805290915290205463ffffffff1683101561386d576000915050611a22565b600060001982015b8163ffffffff168163ffffffff16111561392657600282820363ffffffff1604810361389f615f1b565b506001600160a01b038716600090815260046020908152604080832063ffffffff80861685529083529281902081518083019092528054909316808252600190930154918101919091529087141561390157602001519450611a229350505050565b805163ffffffff168711156139185781935061391f565b6001820392505b5050613875565b506001600160a01b038516600090815260046020908152604080832063ffffffff9094168352929052206001015491505092915050565b60086020526000908152604090205481565b6026546001600160a01b0316331461398657600080fd5b6001600160a01b038116600081815260186020908152604091829020805460ff191690558151438152339181019190915281517f2ca18fdfae50f1042480d285d21f6706aa6abbd567d60a044b5bec07ccfee648929181900390910190a250565b600e81565b601c60209081526000938452604080852082529284528284209052825290205481565b6001546125c69082906001600160a01b031663525ea631613a335a602a5490615398565b6040518263ffffffff1660e01b81526004018082815260200191505060206040518083038186803b158015613a6757600080fd5b505afa158015613a7b573d6000803e3d6000fd5b505050506040513d6020811015613a9157600080fd5b505161214c565b60026000541415613ade576040805162461bcd60e51b815260206004820152601f6024820152600080516020615f33833981519152604482015290519081900360640190fd5b600260009081556001600160a01b03831681526018602052604090205460ff16613b44576040805162461bcd60e51b815260206004820152601260248201527130b23221b932b234ba22aa241d1010b537b160711b604482015290519081900360640190fd5b6000836001600160a01b03166370a08231306040518263ffffffff1660e01b815260040180826001600160a01b0316815260200191505060206040518083038186803b158015613b9357600080fd5b505afa158015613ba7573d6000803e3d6000fd5b505050506040513d6020811015613bbd57600080fd5b50519050613bd66001600160a01b0385163330856157bd565b6000613c5b82866001600160a01b03166370a08231306040518263ffffffff1660e01b815260040180826001600160a01b0316815260200191505060206040518083038186803b158015613c2957600080fd5b505afa158015613c3d573d6000803e3d6000fd5b505050506040513d6020811015613c5357600080fd5b505190615398565b90506000613c7a612710611cd5600c548561520290919063ffffffff16565b9050613cb5613c898383615398565b6001600160a01b038088166000908152601960209081526040808320938c1683529290522054906151bf565b6001600160a01b0380871660009081526019602090815260408083208b8516808552925290912092909255602654613cef9291168361576b565b336001600160a01b0316856001600160a01b0316876001600160a01b03167fb97975ea9bf5ae2173b9ea765214622396032aba11cd5cc1450c760ac80d059a4386604051808381526020018281526020019250505060405180910390a45050600160005550505050565b3360009081526018602052604090205460ff16613dad576040805162461bcd60e51b815260206004820152600d60248201526c3932b1b2b4b83a1d1010b537b160991b604482015290519081900360640190fd5b604080518082018252601e81527f776f726b526563656970743a20696e737566666369656e742066756e64730000602080830191909152336000908152601982528381206001600160a01b03881682529091529190912054613e109183906154e5565b3360009081526019602090815260408083206001600160a01b0388811680865291845282852095909555938616835260169091529020429055613e5490838361576b565b6040805143815290516001600160a01b03808516923392918716917fd69d6895f1cbbc2a1e10542c83168d399f926db003af0d96c372669aeda2faa39181900360200190a4505050565b60405180604001604052806004815260200163292619a960e11b81525081565b600e60209081526000928352604080842090915290825290205481565b6026546001600160a01b03163314613ef257600080fd5b6026546125c6906001600160a01b0316826156e0565b601160209081526000928352604080842090915290825290205481565b60026000541415613f6b576040805162461bcd60e51b815260206004820152601f6024820152600080516020615f33833981519152604482015290519081900360640190fd5b600260009081553381526021602052604090205460ff1615613fc8576040805162461bcd60e51b8152602060048201526011602482015270189bdb990e88189b1858dadb1a5cdd1959607a1b604482015290519081900360640190fd5b336000908152600d602090815260408083206001600160a01b03861680855292529091204290553014156140065761400133308361557c565b6140ed565b6000826001600160a01b03166370a08231306040518263ffffffff1660e01b815260040180826001600160a01b0316815260200191505060206040518083038186803b15801561405557600080fd5b505afa158015614069573d6000803e3d6000fd5b505050506040513d602081101561407f57600080fd5b505190506140986001600160a01b0384163330856157bd565b6140e981846001600160a01b03166370a08231306040518263ffffffff1660e01b815260040180826001600160a01b0316815260200191505060206040518083038186803b158015613c2957600080fd5b9150505b3360009081526010602090815260408083206001600160a01b038616845290915290205461411b90826151bf565b3360008181526010602090815260408083206001600160a01b03881680855290835281842095909555838352600d82528083209483529381529083902054835143815291820152808301849052915190917fa150b7ad789014c0171a2873708daadbdbf87457d90d3896eaf0907e5b225ae4919081900360600190a250506001600055565b336000818152600e602090815260408083206001600160a01b038716845290915290204290556141d2908390836158cc565b336000908152600f602090815260408083206001600160a01b038616845290915290205461420090826151bf565b336000818152600f602090815260408083206001600160a01b03881680855290835281842095909555838352600e82528083209483529381529083902054835143815291820152808301849052915190917f50eca01e7e4362bc0279a45c4fbe68f263771dd3418b0a29c93008759f433b2e919081900360600190a25050565b600061428d33848461557c565b50600192915050565b6026546001600160a01b031633146142ad57600080fd5b602780546001600160a01b0319166001600160a01b0392909216919091179055565b60156020526000908152604090205460ff1681565b606060248054806020026020016040519081016040528092919081815260200182805480156134c0576020028201919060005260206000209081546001600160a01b031681526001909101906020018083116134a2575050505050905090565b6001600160a01b03811660009081526005602052604081205463ffffffff168061436f5760006143a1565b6001600160a01b038316600090815260046020908152604080832063ffffffff60001986011684529091529020600101545b9392505050565b6026546001600160a01b031633146143bf57600080fd5b6001600160a01b03811660009081526028602052604090205460ff161561442d576040805162461bcd60e51b815260206004820152601760248201527f617070726f76654c69717569646974793a202170616972000000000000000000604482015290519081900360640190fd5b6001600160a01b03166000818152602860205260408120805460ff191660019081179091556029805491820181559091527fcb7c14ce178f56e2e8d86ab33ebc0ae081ba8556a00cd122038841867181caac0180546001600160a01b0319169091179055565b601b60209081526000938452604080852082529284528284209052825290205481565b60095481565b604080517f1ac861a6a8532f3704e1768564a53a32774f00d6cf20ccbbdf60ab61378302bc6020808301919091526001600160a01b038916828401526060820188905260808083018890528351808403909101815260a08301845280519082012061190160f01b60c08401527f51bda7d21d58f344a3db7721f1d7de9e83ecd890ac75709320dc21bea5c313fd60c284015260e2808401829052845180850390910181526101028401808652815191840191909120600091829052610122850180875281905260ff891661014286015261016285018890526101828501879052945191949390926001926101a280840193601f198301929081900390910190855afa1580156145cf573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b03811661462c576040805162461bcd60e51b815260206004820152601260248201527164656c656761746542795369673a2073696760701b604482015290519081900360640190fd5b6001600160a01b03811660009081526008602052604090208054600181019091558814614697576040805162461bcd60e51b815260206004820152601460248201527364656c656761746542795369673a206e6f6e636560601b604482015290519081900360640190fd5b864211156146e5576040805162461bcd60e51b815260206004820152601660248201527519195b1959d85d19509e54da59ce88195e1c1a5c995960521b604482015290519081900360640190fd5b6146ef818a61581d565b505050505050505050565b6026546001600160a01b0316331461471157600080fd5b6001600160a01b03811660009081526018602052604090205460ff1615614773576040805162461bcd60e51b815260206004820152601160248201527030b2322537b11d103537b11035b737bbb760791b604482015290519081900360640190fd5b6001600160a01b0381166000818152601860209081526040808320805460ff191660019081179091556025805491820181559093527f401968ff42a154441da5f6c4c935ac46b8671f0e062baaa62a7545ba53bb6e4c90920180546001600160a01b031916841790558151438152339181019190915281517f3d9884fbd11fce9188657c4bcfda7491d3316ce97bd234d981b7be1f012a852f929181900390910190a250565b600c5481565b6026546001600160a01b0316331461483657600080fd5b6001600160a01b0382166000908152601260205260409020546148599082615398565b6001600160a01b03831660009081526012602052604090205560135461487f9082615398565b6013556001600160a01b038083166000908152600360205260408120546148a892169083615961565b5050565b3360008181526022602090815260408083206001600160a01b038716808552908352818420805460ff1916871515908117909155825190815291519394909390927f3281318a7585797769bac96763acb79c8ce3f9eb3288b0a1ec70fff2a88bb396928290030190a350600192915050565b60166020526000908152604090205481565b6001600160a01b0380881660008181526008602090815260408083208054600180820190925582517f5fae9ec55a1e547936e0e74d606b44cd5f912f9adcd0bba561fea62d570259e98186015280840196909652958c166060860152608085018b905260a085019590955260c08085018a90528151808603909101815260e08501825280519083012061190160f01b6101008601527f51bda7d21d58f344a3db7721f1d7de9e83ecd890ac75709320dc21bea5c313fd61010286015261012280860182905282518087039091018152610142860180845281519185019190912090859052610162860180845281905260ff8a166101828701526101a286018990526101c2860188905291519095919491926101e2808401939192601f1981019281900390910190855afa158015614a6b573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116614ac7576040805162461bcd60e51b81526020600482015260116024820152707065726d69743a207369676e617475726560781b604482015290519081900360640190fd5b896001600160a01b0316816001600160a01b031614614b24576040805162461bcd60e51b81526020600482015260146024820152731c195c9b5a5d0e881d5b985d5d1a1bdc9a5e995960621b604482015290519081900360640190fd5b86421115614b6b576040805162461bcd60e51b815260206004820152600f60248201526e1c195c9b5a5d0e88195e1c1a5c9959608a1b604482015290519081900360640190fd5b6001600160a01b03808b166000818152600660209081526040808320948e16808452948252918290208c905581518c815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a350505050505050505050565b60126020526000908152604090205481565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205490565b6026546001600160a01b03163314614c2857600080fd5b6001600160a01b038216600090815260126020526040902054614c4b90826151bf565b6001600160a01b038316600090815260126020526040902055601354614c7190826151bf565b6013556001600160a01b038083166000908152600360205260408120546148a8921683615961565b601060209081526000928352604080842090915290825290205481565b601a60209081526000938452604080852082529284528284209052825290205481565b60146020526000908152604090205481565b6001600160a01b038083166000908152602360209081526040808320858516845282528083209387168352929052205460ff16614d6f576040805162461bcd60e51b815260206004820152601e60248201527f7061737320646f4b65657065727269676874436865636b732066697273740000604482015290519081900360640190fd5b614d78816153c3565b6001600160a01b03808316600081815260208080526040808320805460ff1990811690915586861684528184208054909116600117905592825260118152828220938716825292909252902054614dd08484836158cc565b614ddb848383615448565b6001600160a01b038084166000818152602360209081526040808320878616808552908352818420958a16808552958352818420805460ff19908116909155858552602284528285203386529093528184208054909316909255519092917f8ea7d2aa01e1e73f355b1a92d0ceeead413bee462dcc66017c6aa115c75672d891a450505050565b60026000541415614ea8576040805162461bcd60e51b815260206004820152601f6024820152600080516020615f33833981519152604482015290519081900360640190fd5b60026000556026546001600160a01b03163314614ec457600080fd5b6001600160a01b038316301415614ef257602654614eed9030906001600160a01b03168361557c565b614f0c565b602654614f0c906001600160a01b0385811691168361576b565b614f178383836158cc565b6001600160a01b038216600081815260156020908152604091829020805460ff19169055815143815290810184905281513393927ff7e41ea76f0e7b22ba17dc4cc01fa75cff34ea24f5efe2874f5e175296259050928290030190a35050600160005550565b7f1ac861a6a8532f3704e1768564a53a32774f00d6cf20ccbbdf60ab61378302bc81565b60286020526000908152604090205460ff1681565b61271081565b60248181548110611a4457fe5b60046020908152600092835260408084209091529082529020805460019091015463ffffffff9091169082565b6027546001600160a01b031681565b6026546001600160a01b0316331461501c57600080fd5b6001600160a01b038116600081815260156020908152604091829020805460ff19166001179055815143815291517ffb2bdfce35c242f34d4f9633225d3c34a5892d5eae9ce102de6aac188dd25ba09281900390910190a250565b60005a602a556001600160a01b038616600090815260208052604090205460ff1680156150c957506001600160a01b038087166000908152601160209081526040808320938916835292905220548411155b80156150ed57506001600160a01b0386166000908152601760205260409020548311155b801561511d57506001600160a01b038616600090815260146020526040902054829061511a904290615398565b10155b9695505050505050565b60216020526000908152604090205460ff1681565b601e60209081526000938452604080852082529284528284209052825290205481565b606060298054806020026020016040519081016040528092919081815260200182805480156134c0576020028201919060005260206000209081546001600160a01b031681526001909101906020018083116134a2575050505050905090565b6000828201838110156143a1576040805162461bcd60e51b81526020600482015260066024820152656164643a202b60d01b604482015290519081900360640190fd5b60008261521157506000611a22565b8282028284828161521e57fe5b04146143a1576040805162461bcd60e51b815260206004820152600660248201526536bab61d101560d11b604482015290519081900360640190fd5b60006143a18383604051806040016040528060068152602001656469763a202f60d01b815250615adf565b6001600160a01b0382166152d6576040805162461bcd60e51b81526020600482015260136024820152725f6275726e3a207a65726f206164647265737360681b604482015290519081900360640190fd5b60408051808201825260168152755f6275726e3a20657863656564732062616c616e636560501b6020808301919091526001600160a01b03851660009081526007909152919091205461532a9183906154e5565b6001600160a01b0383166000908152600760205260409020556002546153509082615398565b6002556040805182815290516000916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b60006143a18383604051806040016040528060068152602001657375623a202d60d01b8152506154e5565b6001600160a01b0381166000908152601460205260409020546125c6576001600160a01b03166000818152601460209081526040808320429081905560248054600181019091557f7cd332d19b93bcabe3cce7ca0c18a052f57e5fd03b4758a09f30f5ddc4b22ec40180546001600160a01b0319169095179094556016909152902055565b6001600160a01b0380831660009081526011602090815260408083209387168352929052205461547890826151bf565b6001600160a01b038084166000908152601160209081526040808320938816808452939091529020919091553014156154e0576013546154b890826151bf565b6013556001600160a01b038083166000908152600360205260408120546154e0921683615961565b505050565b600081848411156155745760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015615539578181015183820152602001615521565b50505050905090810190601f1680156155665780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6001600160a01b0383166155d7576040805162461bcd60e51b815260206004820152601d60248201527f5f7472616e73666572546f6b656e733a207a65726f2061646472657373000000604482015290519081900360640190fd5b6001600160a01b038216615632576040805162461bcd60e51b815260206004820152601d60248201527f5f7472616e73666572546f6b656e733a207a65726f2061646472657373000000604482015290519081900360640190fd5b6001600160a01b0383166000908152600760205260409020546156559082615398565b6001600160a01b03808516600090815260076020526040808220939093559084168152205461568490826151bf565b6001600160a01b0380841660008181526007602090815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b6002546156ed90826151bf565b6002556001600160a01b03821660009081526007602052604090205461571390826151bf565b6001600160a01b03831660008181526007602090815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b1790526154e0908490615b44565b604080516001600160a01b0380861660248301528416604482015260648082018490528251808303909101815260849091019091526020810180516001600160e01b03166323b872dd60e01b179052615817908590615b44565b50505050565b6001600160a01b03808316600081815260036020908152604080832054601183528184203085528352818420549484526012909252822054931692909161586491906151bf565b6001600160a01b0385811660008181526003602052604080822080546001600160a01b031916898616908117909155905194955093928616927f3134e8a2e6d97e929a7e54011ea5485d7d196dd5f0ba4d4ef95803e8e3fc257f9190a4615817828483615961565b6001600160a01b038083166000908152601160209081526040808320938716835292905220546158fc9082615398565b6001600160a01b038084166000908152601160209081526040808320938816808452939091529020919091553014156154e05760135461593c9082615398565b6013556001600160a01b038083166000908152600360205260408120546154e0921690835b816001600160a01b0316836001600160a01b0316141580156159835750600081115b156154e0576001600160a01b03831615615a4e576001600160a01b03831660009081526005602052604081205463ffffffff1690816159c35760006159f5565b6001600160a01b038516600090815260046020908152604080832063ffffffff60001987011684529091529020600101545b90506000615a3c84604051806040016040528060168152602001755f6d6f7665566f7465733a20756e646572666c6f777360501b815250846154e59092919063ffffffff16565b9050615a4a86848484615cff565b5050505b6001600160a01b038216156154e0576001600160a01b03821660009081526005602052604081205463ffffffff169081615a89576000615abb565b6001600160a01b038416600090815260046020908152604080832063ffffffff60001987011684529091529020600101545b90506000615ac982856151bf565b9050615ad785848484615cff565b505050505050565b60008183615b2e5760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315615539578181015183820152602001615521565b506000838581615b3a57fe5b0495945050505050565b615b56826001600160a01b0316615e81565b615b9e576040805162461bcd60e51b815260206004820152601460248201527314d85999515490cc8c0e880858dbdb9d1c9858dd60621b604482015290519081900360640190fd5b60006060836001600160a01b0316836040518082805190602001908083835b60208310615bdc5780518252601f199092019160209182019101615bbd565b6001836020036101000a0380198251168184511680821785525050505050509050019150506000604051808303816000865af19150503d8060008114615c3e576040519150601f19603f3d011682016040523d82523d6000602084013e615c43565b606091505b509150915081615c9a576040805162461bcd60e51b815260206004820181905260248201527f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564604482015290519081900360640190fd5b80511561581757808060200190516020811015615cb657600080fd5b5051615817576040805162461bcd60e51b815260206004820152601360248201527214d85999515490cc8c0e88085cdd58d8d95959606a1b604482015290519081900360640190fd5b6000615d40436040518060400160405280601981526020017f5f7772697465436865636b706f696e743a203332206269747300000000000000815250615ebd565b905060008463ffffffff16118015615d8957506001600160a01b038516600090815260046020908152604080832063ffffffff6000198901811685529252909120548282169116145b15615dc6576001600160a01b038516600090815260046020908152604080832063ffffffff60001989011684529091529020600101829055615e37565b60408051808201825263ffffffff808416825260208083018681526001600160a01b038a166000818152600484528681208b8616825284528681209551865490861663ffffffff19918216178755925160019687015590815260059092529390208054928801909116919092161790555b604080518481526020810184905281516001600160a01b038816927fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a724928290030190a25050505050565b6000813f7fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470818114801590615eb557508115155b949350505050565b6000816401000000008410615f135760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315615539578181015183820152602001615521565b509192915050565b60408051808201909152600080825260208201529056fe5265656e7472616e637947756172643a207265656e7472616e742063616c6c00756e626f6e644c697175696469747946726f6d4a6f623a20696e73756666696369656e742066756e64737472616e7366657246726f6d3a2065786365656473207370656e64657220616c6c6f77616e6365a26469706673582212205bbc8c005f47a337e632e6340b106c762ee4daf267ed5a8f5db4cf82a9bbdd4c64736f6c634300060c0033
Deployed Bytecode Sourcemap
19326:44115:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37447:95;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37447:95:0;;:::i;:::-;;19589:41;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59423:205;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;59423:205:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;19503:27;;;;;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;19503:27:0;;;;;;;;;;;;;;33069:24;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33069:24:0;;:::i;40805:1118::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;40805:1118:0;;;;;;;;;;;;;;;;;:::i;20632:40::-;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;19891:27;;;;;;;;;;;;;:::i;32390:87::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;32390:87:0;;;;;;;;;;;;;;;;;;;:::i;31390:45::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31390:45:0;-1:-1:-1;;;;;31390:45:0;;:::i;33366:31::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33366:31:0;;:::i;52742:708::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;52742:708:0;-1:-1:-1;;;;;52742:708:0;;:::i;29909:34::-;;;;;;;;;;;;;:::i;49774:355::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;49774:355:0;;;;;;;;;;;;;;;;;;:::i;20506:119::-;;;;;;;;;;;;;:::i;46160:367::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;46160:367:0;;;;;;;;:::i;48748:170::-;;;;;;;;;;;;;:::i;62349:553::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;62349:553:0;;;;;;;;;;;;;;;;;:::i;36133:291::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;36133:291:0;;;;;;;;:::i;37914:119::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37914:119:0;;:::i;20967:128::-;;;;;;;;;;;;;:::i;19792:35::-;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;37234:92;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37234:92:0;;:::i;30254:60::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;30254:60:0;;;;;;;;;;:::i;32531:39::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32531:39:0;-1:-1:-1;;;;;32531:39:0;;:::i;31509:36::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31509:36:0;-1:-1:-1;;;;;31509:36:0;;:::i;43170:80::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;43170:80:0;;:::i;39746:836::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;39746:836:0;;;;;;;;;;;;;;;;;;;:::i;30976:27::-;;;;;;;;;;;;;:::i;44674:573::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;44674:573:0;;;;;;;;:::i;37667:103::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37667:103:0;;:::i;56136:762::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;56136:762:0;-1:-1:-1;;;;;56136:762:0;;:::i;38685:797::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;38685:797:0;;;;;;;;;;;;;;;;;:::i;58355:151::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;58355:151:0;-1:-1:-1;;;;;58355:151:0;;:::i;19992:45::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;19992:45:0;-1:-1:-1;;;;;19992:45:0;;:::i;33166:25::-;;;;;;;;;;;;;:::i;21904:95::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;21904:95:0;-1:-1:-1;;;;;21904:95:0;;:::i;44010:124::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;44010:124:0;-1:-1:-1;;;;;44010:124:0;;:::i;29822:28::-;;;;;;;;;;;;;:::i;42106:705::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;42106:705:0;;;;;;;;;;:::i;31608:59::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;31608:59:0;;;;;;;;;;:::i;36971:122::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36971:122:0;-1:-1:-1;;;;;36971:122:0;;:::i;30490:68::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;30490:68:0;;;;;;;;;;:::i;47672:93::-;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49161:128;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;49161:128:0;-1:-1:-1;;;;;49161:128:0;;:::i;33892:354::-;;;;;;;;;;;;;;;;-1:-1:-1;33892:354:0;-1:-1:-1;;;;;33892:354:0;;:::i;20259:49::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;20259:49:0;-1:-1:-1;;;;;20259:49:0;;:::i;:::-;;;;;;;;;;;;;;;;;;;61526:108;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;61526:108:0;-1:-1:-1;;;;;61526:108:0;;:::i;48232:111::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;48232:111:0;-1:-1:-1;;;;;48232:111:0;;:::i;58019:201::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;58019:201:0;-1:-1:-1;;;;;58019:201:0;;:::i;38311:132::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38311:132:0;-1:-1:-1;;;;;38311:132:0;;:::i;23889:1191::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;23889:1191:0;;;;;;;;:::i;21178:39::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;21178:39:0;-1:-1:-1;;;;;21178:39:0;;:::i;47936:148::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;47936:148:0;-1:-1:-1;;;;;47936:148:0;;:::i;30151:42::-;;;;;;;;;;;;;:::i;32012:97::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;32012:97:0;;;;;;;;;;;;;;;;;;;:::i;44321:126::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;44321:126:0;-1:-1:-1;;;;;44321:126:0;;:::i;34499:627::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;34499:627:0;;;;;;;;;;;;;;;;;:::i;45532:402::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;45532:402:0;;;;;;;;;;;;;;;;;:::i;19691:38::-;;;;;;;;;;;;;:::i;30375:62::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;30375:62:0;;;;;;;;;;:::i;42965:94::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;42965:94:0;;:::i;30748:57::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;30748:57:0;;;;;;;;;;:::i;51202:837::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;51202:837:0;;;;;;;;:::i;55465:356::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;55465:356:0;;;;;;;;:::i;61895:147::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;61895:147:0;;;;;;;;:::i;48508:117::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;48508:117:0;-1:-1:-1;;;;;48508:117:0;;:::i;31177:40::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31177:40:0;-1:-1:-1;;;;;31177:40:0;;:::i;52120:99::-;;;;;;;;;;;;;:::i;23238:220::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;23238:220:0;-1:-1:-1;;;;;23238:220:0;;:::i;36578:239::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36578:239:0;-1:-1:-1;;;;;36578:239:0;;:::i;31870:90::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;31870:90:0;;;;;;;;;;;;;;;;;;;:::i;29719:25::-;;;;;;;;;;;;;:::i;22433:604::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;22433:604:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;47346:221::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;47346:221:0;-1:-1:-1;;;;;47346:221:0;;:::i;30034:20::-;;;;;;;;;;;;;:::i;35698:241::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;35698:241:0;;;;;;;;:::i;59928:232::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;59928:232:0;;;;;;;;;;:::i;31282:39::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31282:39:0;-1:-1:-1;;;;;31282:39:0;;:::i;60647:676::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;60647:676:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;30876:37::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;30876:37:0;-1:-1:-1;;;;;30876:37:0;;:::i;58812:136::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;58812:136:0;;;;;;;;;;:::i;35289:238::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;35289:238:0;;;;;;;;:::i;30624:64::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;30624:64:0;;;;;;;;;;:::i;31732:89::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;31732:89:0;;;;;;;;;;;;;;;;;;;:::i;31069:41::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31069:41:0;-1:-1:-1;;;;;31069:41:0;;:::i;54419:855::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;54419:855:0;;;;;;;;;;;;;;;;;;;:::i;57429:446::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;57429:446:0;;;;;;;;;;;;;;;;;:::i;20766:111::-;;;;;;;;;;;;;:::i;33308:49::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33308:49:0;-1:-1:-1;;;;;33308:49:0;;:::i;30061:33::-;;;;;;;;;;;;;:::i;32957:27::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32957:27:0;;:::i;20120:70::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;20120:70:0;;-1:-1:-1;;;;;20120:70:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;33198:32;;;;;;;;;;;;;:::i;57042:149::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;57042:149:0;-1:-1:-1;;;;;57042:149:0;;:::i;50666:344::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;50666:344:0;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;32642:41::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32642:41:0;-1:-1:-1;;;;;32642:41:0;;:::i;32252:88::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;32252:88:0;;;;;;;;;;;;;;;;;;;:::i;38113:98::-;;;;;;;;;;;;;:::i;37447:95::-;33729:10;;-1:-1:-1;;;;;33729:10:0;33715;:24;33707:33;;;;;;37520:4:::1;:14:::0;37447:95::o;19589:41::-;;;;;;;;;;;;;;-1:-1:-1;;;19589:41:0;;;;:::o;59423:205::-;59514:10;59486:4;59503:22;;;:10;:22;;;;;;;;-1:-1:-1;;;;;59503:31:0;;;;;;;;;;;:40;;;59561:37;;;;;;;59486:4;;59503:31;;59514:10;;59561:37;;;;;;;;-1:-1:-1;59616:4:0;59423:205;;;;;:::o;19503:27::-;;;-1:-1:-1;;;;;19503:27:0;;:::o;33069:24::-;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;33069:24:0;;-1:-1:-1;33069:24:0;:::o;40805:1118::-;40926:10;40910:27;;;;:15;:27;;;;;;;;-1:-1:-1;;;;;40910:38:0;;;;;;;;;;;:43;;;;;;;;;;;:48;40902:83;;;;;-1:-1:-1;;;40902:83:0;;;;;;;;;;;;-1:-1:-1;;;40902:83:0;;;;;;;;;;;;;;;41015:10;40996:30;;;;:18;:30;;;;;;;;-1:-1:-1;;;;;40996:41:0;;;;;;;;;;;;:46;;;;;;;;;;;;41045:3;40996:52;;41115:37;;;:25;:37;;;;;:48;;;;;;;;:53;;;;;;;;:65;;41173:6;41115:57;:65::i;:::-;41085:10;41059:37;;;;:25;:37;;;;;;;;-1:-1:-1;;;;;41059:48:0;;;;;;;;;;;;:53;;;;;;;;;;;;:121;;;41256:29;;;:17;:29;;;;;:40;;;;;;;;;:45;;;;;;;;;;41199:53;;;-1:-1:-1;41199:102:0;41191:157;;;;-1:-1:-1;;;41191:157:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41379:52;;;-1:-1:-1;;;41379:52:0;;-1:-1:-1;;;;;41379:52:0;;;;;;41425:4;41379:52;;;;;;41361:15;;41379;;:26;;:52;;;;;;;;;;;;;;;:15;:52;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;41379:52:0;41484:31;;;-1:-1:-1;;;41484:31:0;;;;41379:52;;-1:-1:-1;41442:12:0;;41457:59;;-1:-1:-1;;;;;41484:29:0;;;;;:31;;;;;41379:52;;41484:31;;;;;;;;:29;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;41484:31:0;41457:22;:10;41472:6;41457:14;:22::i;:::-;:26;;:59::i;:::-;-1:-1:-1;;;;;41541:12:0;;;;;;:7;:12;;;;;;;;41562:4;41541:27;;;;;;;;41442:74;;-1:-1:-1;41531:37:0;;41527:312;;;-1:-1:-1;;;;;41606:12:0;;;;;;:7;:12;;;;;;;;41599:4;41606:27;;;;;;;;;41585:49;;41599:4;41585:5;:49::i;:::-;-1:-1:-1;;;;;41649:12:0;;41679:1;41649:12;;;:7;:12;;;;;;;;41670:4;41649:27;;;;;;;:31;41527:312;;;41713:29;41727:4;41734:7;41713:5;:29::i;:::-;-1:-1:-1;;;;;41787:12:0;;;;;;:7;:12;;;;;;;;41808:4;41787:27;;;;;;;;:40;;41819:7;41787:31;:40::i;:::-;-1:-1:-1;;;;;41757:12:0;;;;;;:7;:12;;;;;;;;41778:4;41757:27;;;;;;;:70;41527:312;41882:10;-1:-1:-1;;;;;41856:59:0;41871:9;-1:-1:-1;;;;;41856:59:0;41866:3;-1:-1:-1;;;;;41856:59:0;;41894:12;41908:6;41856:59;;;;;;;;;;;;;;;;;;;;;;;;40805:1118;;;;;:::o;20632:40::-;;;:::o;19891:27::-;;;;:::o;32390:87::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;31390:45::-;;;;;;;;;;;;;:::o;33366:31::-;;;;;;;;;;52742:708;52816:10;52806:21;;;;:9;:21;;;;;;;;52805:22;52797:56;;;;;-1:-1:-1;;;52797:56:0;;;;;;;;;;;;-1:-1:-1;;;52797:56:0;;;;;;;;;;;;;;;53007:10;52998:20;;;;:8;:20;;;;;;;;-1:-1:-1;;;;;52998:29:0;;;;;;;;;;:34;;;;:103;;-1:-1:-1;53090:4:0;;53065:10;53100:1;53056:20;;;:8;:20;;;;;;;;-1:-1:-1;;;;;53056:29:0;;;;;;;;;;53100:1;;53036:60;;53056:39;;:33;:39::i;:::-;53036:15;;:19;:60::i;:::-;:65;;52998:103;52990:133;;;;;-1:-1:-1;;;52990:133:0;;;;;;;;;;;;-1:-1:-1;;;52990:133:0;;;;;;;;;;;;;;;53164:22;53175:10;53164;:22::i;:::-;53205:10;53197:19;;;;:7;:19;;;;;;;:26;;-1:-1:-1;;53197:26:0;53219:4;53197:26;;;53261:12;:24;;;;;-1:-1:-1;;;;;53261:33:0;;;;;;;;;;53234:61;;53240:7;;53234:5;:61::i;:::-;53319:10;53342:1;53306:24;;;:12;:24;;;;;;;;-1:-1:-1;;;;;53306:33:0;;;;;;;;;;;:37;;;53415:17;;;:5;:17;;;;;:26;;;;;;;;;;53359:83;;53384:12;53359:83;;53398:15;53359:83;;;;;;;;;;;;;;;;;;;;;;52742:708;:::o;29909:34::-;;;;:::o;49774:355::-;49866:4;49894:9;49883:8;:20;-1:-1:-1;;;;;49921:15:0;;;;;;:7;:15;;;;;;;;:94;;;;-1:-1:-1;;;;;;49990:13:0;;;;;;:5;:13;;;;;;;;;49957:5;:13;;;;;49979:4;49957:28;;;;;;;;;50008:7;;49957:47;;:28;:32;:47::i;:::-;:58;;49921:94;:146;;;;-1:-1:-1;;;;;;50036:21:0;;;;;;:13;:21;;;;;;:31;-1:-1:-1;50036:31:0;49921:146;:200;;;;-1:-1:-1;;;;;;50096:17:0;;;;;;:9;:17;;;;;;50118:3;;50088:26;;:3;;:7;:26::i;:::-;:33;;49921:200;49914:207;49774:355;-1:-1:-1;;;;;49774:355:0:o;20506:119::-;20548:77;20506:119;:::o;46160:367::-;46240:10;46235:16;;;;:4;:16;;;;;;;;46227:42;;;;;-1:-1:-1;;;46227:42:0;;;;;;;;;;;;-1:-1:-1;;;46227:42:0;;;;;;;;;;;;;;;46307:70;;;;;;;;;;;;;;;;;;;;46315:10;-1:-1:-1;46307:19:0;;;:7;:19;;;;;30189:3;46307:24;;;;;;;;;;:70;;46336:6;;46307:28;:70::i;:::-;46288:10;46280:19;;;;:7;:19;;;;;;;;30189:3;46280:24;;;;;;;:97;;;;-1:-1:-1;;;;;46388:15:0;;;;;:7;:15;;;;;;46406:3;46388:21;;46420:32;;;;;;;46445:6;;46420:32;;46280:19;46420:32;46445:6;46388:15;46420:32;;;;;;;;;;;;;;;;;;;;-1:-1:-1;46468:51:0;;;46506:12;46468:51;;;;-1:-1:-1;;;;;46468:51:0;;;46486:10;;30189:3;;46468:51;;;;;;;;;;46160:367;;:::o;48748:170::-;48818:17;;-1:-1:-1;;;;;48818:17:0;48804:10;:31;48796:73;;;;;-1:-1:-1;;;48796:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;48893:17;;48880:10;:30;;-1:-1:-1;;;;;;48880:30:0;-1:-1:-1;;;;;48893:17:0;;;48880:30;;;;;;48748:170::o;62349:553::-;-1:-1:-1;;;;;62508:15:0;;62428:4;62508:15;;;:10;:15;;;;;;;;62463:10;62508:24;;;;;;;;62428:4;;62463:10;;62508:24;62549:14;;;;;:46;;;-1:-1:-1;;62567:16:0;:28;;62549:46;62545:282;;;62612:17;62632:71;62653:6;62632:71;;;;;;;;;;;;;;;;;:16;;:71;:20;:71::i;:::-;-1:-1:-1;;;;;62718:15:0;;;;;;;:10;:15;;;;;;;;:24;;;;;;;;;;;;;:39;;;62779:36;;;;;;;62612:91;;-1:-1:-1;62718:24:0;;:15;;62779:36;;;;;;;;;62545:282;;62839:33;62855:3;62860;62865:6;62839:15;:33::i;:::-;-1:-1:-1;62890:4:0;;62349:553;-1:-1:-1;;;;;62349:553:0:o;36133:291::-;33729:10;;-1:-1:-1;;;;;33729:10:0;33715;:24;33707:33;;;;;;-1:-1:-1;;;;;36223:9:0;::::1;;::::0;;;:4:::1;:9;::::0;;;;;::::1;;36215:40;;;::::0;;-1:-1:-1;;;36215:40:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;36215:40:0;;;;;;;;;;;;;::::1;;-1:-1:-1::0;;;;;36296:12:0;::::1;;::::0;;;:7:::1;:12;::::0;;;;;;;36317:4:::1;36296:27:::0;;;;;;;;:39:::1;::::0;36328:6;36296:31:::1;:39::i;:::-;-1:-1:-1::0;;;;;36266:12:0;::::1;;::::0;;;:7:::1;:12;::::0;;;;;;;36287:4:::1;36266:27:::0;;;;;;;;;;:69;;;;36353:63;;36395:12:::1;36353:63:::0;;;;::::1;::::0;;;;;36383:10:::1;::::0;36353:63:::1;::::0;;;;;;::::1;36133:291:::0;;:::o;37914:119::-;33729:10;;-1:-1:-1;;;;;33729:10:0;33715;:24;33707:33;;;;;;37999:13:::1;:26:::0;37914:119::o;20967:128::-;21009:86;20967:128;:::o;19792:35::-;19825:2;19792:35;:::o;37234:92::-;33729:10;;-1:-1:-1;;;;;33729:10:0;33715;:24;33707:33;;;;;;37306:3:::1;:12:::0;37234:92::o;30254:60::-;;;;;;;;;;;;;;;;;;;;;;;;:::o;32531:39::-;;;;;;;;;;;;;;;:::o;31509:36::-;;;;;;;;;;;;;;;:::o;43170:80::-;43217:25;43223:10;43235:6;43217:5;:25::i;:::-;43170:80;:::o;39746:836::-;-1:-1:-1;;;;;39850:28:0;;;;;;:17;:28;;;;;;;;39842:64;;;;;-1:-1:-1;;;39842:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;39925:26:0;;;;;;;:16;:26;;;;;;;;:37;;;;;;;;;;:42;;;;;;;;;;39917:75;;;;;-1:-1:-1;;;39917:75:0;;;;;;;;;;;;-1:-1:-1;;;39917:75:0;;;;;;;;;;;;;;;40078:13;;-1:-1:-1;;;;;40031:26:0;;;40097:1;40031:26;;;:16;:26;;;;;;;;:37;;;;;;;;;;:42;;;;;;;;;;;;40097:1;;40011:82;;40031:61;;:46;:61::i;40011:82::-;:87;;40003:115;;;;;-1:-1:-1;;;40003:115:0;;;;;;;;;;;;-1:-1:-1;;;40003:115:0;;;;;;;;;;;;;;;40147:52;;;-1:-1:-1;;;40147:52:0;;-1:-1:-1;;;;;40147:52:0;;;;;;40193:4;40147:52;;;;;;40129:15;;40147;;:26;;:52;;;;;;;;;;;;;;;:15;:52;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40147:52:0;40287:31;;;-1:-1:-1;;;40287:31:0;;;;40147:52;;-1:-1:-1;40210:12:0;;40225:94;;-1:-1:-1;;;;;40287:29:0;;;;;:31;;;;;40147:52;;40287:31;;;;;;;;:29;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40287:31:0;-1:-1:-1;;;;;40240:25:0;;;;;;;:15;40287:31;40240:25;;;;;;;:36;;;;;;;;;;:41;;;;;;;;;;40225:57;;:10;;:14;:57::i;:94::-;40210:109;;40330:29;40344:4;40351:7;40330:5;:29::i;:::-;-1:-1:-1;;;;;40400:12:0;;;;;;:7;:12;;;;;;;;40421:4;40400:27;;;;;;;;:40;;40432:7;40400:31;:40::i;:::-;-1:-1:-1;;;;;40370:12:0;;;;;;;:7;:12;;;;;;;;40391:4;40370:27;;;;;;;:70;;;;40451:25;;;;;;:15;:25;;;;;:36;;;;;;;;;;;;:41;;;;;;;;:45;;;;40514:60;;40552:12;40514:60;;;;;;;;;;40451:25;;40514:60;;;;;;;;;39746:836;;;;;:::o;30976:27::-;;;;:::o;44674:573::-;44755:10;44750:16;;;;:4;:16;;;;;;;;44742:46;;;;;-1:-1:-1;;;44742:46:0;;;;;;;;;;;;-1:-1:-1;;;44742:46:0;;;;;;;;;;;;;;;44817:4;;-1:-1:-1;;;;;44817:4:0;:18;44836:23;44849:9;44836:8;;;:12;:23::i;:::-;44817:43;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;44817:43:0;44807:53;;;44799:88;;;;;-1:-1:-1;;;44799:88:0;;;;;;;;;;;;-1:-1:-1;;;44799:88:0;;;;;;;;;;;;;;;44935:80;;;;;;;;;;;;;;;;;;;;44943:10;-1:-1:-1;44935:19:0;;;:7;:19;;;;;44963:4;44935:34;;;;;;;;;;:80;;44974:6;;44935:38;:80::i;:::-;44906:10;44898:19;;;;:7;:19;;;;;;;;44926:4;44898:34;;;;;;;;;:117;;;;-1:-1:-1;;;;;45026:15:0;;;;:7;:15;;;;;45044:3;45026:21;;45058:36;;45034:6;45087;45058:5;:36::i;:::-;-1:-1:-1;;;;;45129:21:0;;;;;;:13;:21;;;;;;:33;;45155:6;45129:25;:33::i;:::-;-1:-1:-1;;;;;45105:21:0;;;;;;:13;:21;;;;;;;;;:57;;;;45178:61;;45226:12;45178:61;;;;45105:21;;45206:10;;45199:4;;45178:61;;;;;;;;;44674:573;;:::o;37667:103::-;33729:10;;-1:-1:-1;;;;;33729:10:0;33715;:24;33707:33;;;;;;37744:6:::1;:18:::0;37667:103::o;56136:762::-;8056:1;8662:7;;:19;;8654:63;;;;;-1:-1:-1;;;8654:63:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;8654:63:0;;;;;;;;;;;;;;;8056:1;8795:7;:18;;;56280:10:::1;56269:22:::0;;:10:::1;:22;::::0;;;;;;;-1:-1:-1;;;;;56269:31:0;::::1;::::0;;;;;;;;:36;;::::1;::::0;:109:::1;;-1:-1:-1::0;56365:6:0::1;::::0;56340:10:::1;56377:1;56329:22:::0;;;:10:::1;:22;::::0;;;;;;;-1:-1:-1;;;;;56329:31:0;::::1;::::0;;;;;;;;56377:1;;56309:64:::1;::::0;56329:43:::1;::::0;:35:::1;:43::i;56309:64::-;:69;;56269:109;56261:141;;;::::0;;-1:-1:-1;;;56261:141:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;56261:141:0;;;;;;;;;;;;;::::1;;56431:10;56422:20;::::0;;;:8:::1;:20;::::0;;;;;::::1;;56421:21;56413:52;;;::::0;;-1:-1:-1;;;56413:52:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;56413:52:0;;;;;;;;;;;;;::::1;;-1:-1:-1::0;;;;;56482:24:0;::::1;56501:4;56482:24;56478:250;;;56554:10;56566:28;::::0;;;:16:::1;:28;::::0;;;;;;;-1:-1:-1;;;;;56566:37:0;::::1;::::0;;;;;;;;56523:81:::1;::::0;56547:4:::1;::::0;56523:15:::1;:81::i;:::-;56478:250;;;56666:10;56678:28;::::0;;;:16:::1;:28;::::0;;;;;;;-1:-1:-1;;;;;56678:37:0;::::1;::::0;;;;;;;;;56637:79:::1;::::0;56666:10;56637:28:::1;:79::i;:::-;56757:10;56800:28;::::0;;;:16:::1;:28;::::0;;;;;;;-1:-1:-1;;;;;56800:37:0;::::1;::::0;;;;;;;;;56743:95;;56769:12:::1;56743:95:::0;;56783:15:::1;56743:95:::0;;::::1;::::0;;;;;;;;;;::::1;::::0;;;;;;;::::1;56866:10;56889:1;56849:28:::0;;;:16:::1;:28;::::0;;;;;;;-1:-1:-1;;;;;56849:37:0;;;::::1;::::0;;;;;;;;:41;;;8012:1;8974:22;;56136:762::o;38685:797::-;8056:1;8662:7;;:19;;8654:63;;;;;-1:-1:-1;;;8654:63:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;8654:63:0;;;;;;;;;;;;;;;8056:1;8795:7;:18;;;-1:-1:-1;;;;;38798:28:0;::::1;::::0;;:17:::1;:28;::::0;;;;;::::1;;38790:65;;;::::0;;-1:-1:-1;;;38790:65:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;38866:69;-1:-1:-1::0;;;;;38866:34:0;::::1;38901:10;38921:4;38928:6:::0;38866:34:::1;:69::i;:::-;39012:10;38994:29;::::0;;;:17:::1;:29;::::0;;;;;;;-1:-1:-1;;;;;38994:40:0;;::::1;::::0;;;;;;;;:45;;::::1;::::0;;;;;;;;:57:::1;::::0;39044:6;38994:49:::1;:57::i;:::-;38964:10;38946:29;::::0;;;:17:::1;:29;::::0;;;;;;;-1:-1:-1;;;;;38946:40:0;;::::1;::::0;;;;;;;;;:45;;::::1;::::0;;;;;;;;;:105;;;;39062:28;;;:16:::1;:28:::0;;;;;:39;;;;;;;;:44;;;;;;;;39109:3:::1;39062:50:::0;;39169:27;;;:15:::1;:27:::0;;;;;:38;;;;;;;;;:43;;;;;;;;;;:55:::1;::::0;39217:6;39169:47:::1;:55::i;:::-;39139:10;39123:27;::::0;;;:15:::1;:27;::::0;;;;;;;-1:-1:-1;;;;;39123:38:0;;::::1;::::0;;;;;;;;:43;;::::1;::::0;;;;;;;:101;;;;39242:4:::1;:9:::0;;;;::::1;;39241:10;:41:::0;::::1;;;;39279:3;39255:21;39272:3;39255:16;:21::i;:::-;:27;39241:41;39237:163;;;39311:10;::::0;39299:39:::1;::::0;;-1:-1:-1;;;39299:39:0;;-1:-1:-1;;;;;39299:39:0;;::::1;;::::0;::::1;::::0;;;39311:10;;;::::1;::::0;39299:34:::1;::::0;:39;;;;;39311:10:::1;::::0;39299:39;;;;;;;39311:10;;39299:39;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;;;;;;;39353:29:0;::::1;;::::0;;;:24:::1;:29;::::0;;;;39385:3:::1;39353:35:::0;;-1:-1:-1;39237:163:0::1;39441:10;-1:-1:-1::0;;;;;39415:59:0::1;39430:9;-1:-1:-1::0;;;;;39415:59:0::1;39425:3;-1:-1:-1::0;;;;;39415:59:0::1;;39453:12;39467:6;39415:59;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;8012:1:0;8974:7;:22;-1:-1:-1;38685:797:0:o;58355:151::-;33729:10;;-1:-1:-1;;;;;33729:10:0;33715;:24;33707:33;;;;;;-1:-1:-1;;;;;58422:16:0;::::1;58441:5;58422:16:::0;;;:8:::1;:16;::::0;;;;;;;;:24;;-1:-1:-1;;58422:24:0::1;::::0;;58462:36;;58485:12:::1;58462:36:::0;;;;::::1;::::0;;;;;;;;::::1;58355:151:::0;:::o;19992:45::-;;;;;;;;;;;;-1:-1:-1;;;;;19992:45:0;;:::o;33166:25::-;;;-1:-1:-1;;;;;33166:25:0;;:::o;21904:95::-;21959:32;21969:10;21981:9;21959;:32::i;44010:124::-;44082:4;;44062:64;;44074:6;;-1:-1:-1;;;;;44082:4:0;:18;44101:23;44114:9;44101:8;;;:12;:23::i;:::-;44082:43;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;44082:43:0;44062:11;:64::i;29822:28::-;;;;:::o;42106:705::-;42217:10;42198:30;;;;:18;:30;;;;;;;;-1:-1:-1;;;;;42198:41:0;;;;;;;;;;;:46;;;;;;;;;;;42190:81;;;;;-1:-1:-1;;;42190:81:0;;;;;;;;;;;;-1:-1:-1;;;42190:81:0;;;;;;;;;;;;;;;42361:6;;42329:10;42373:1;42310:30;;;:18;:30;;;;;;;;-1:-1:-1;;;;;42310:41:0;;;;;;;;;;;:46;;;;;;;;;;;42373:1;;42290:79;;42310:58;;:50;:58::i;42290:79::-;:84;;42282:117;;;;;-1:-1:-1;;;42282:117:0;;;;;;;;;;;;-1:-1:-1;;;42282:117:0;;;;;;;;;;;;;;;42451:10;42410:12;42425:37;;;:25;:37;;;;;;;;-1:-1:-1;;;;;42425:48:0;;;;;;;;;;;;:53;;;;;;;;;;;;;42537:29;;;:17;:29;;;;;:40;;;;;;;;;:45;;;;;;;;;:58;;42425:53;42537:49;:58::i;:::-;42507:10;42489:29;;;;:17;:29;;;;;;;;-1:-1:-1;;;;;42489:40:0;;;;;;;;;;;;:45;;;;;;;;;;;;:106;;;;42606:37;;;:25;:37;;;;;:48;;;;;;;;:53;;;;;;;;;:57;42674:51;;42489:40;42717:7;42674:30;:51::i;:::-;42769:10;-1:-1:-1;;;;;42743:60:0;42758:9;-1:-1:-1;;;;;42743:60:0;42753:3;-1:-1:-1;;;;;42743:60:0;;42781:12;42795:7;42743:60;;;;;;;;;;;;;;;;;;;;;;;;42106:705;;;:::o;31608:59::-;;;;;;;;;;;;;;;;;;;;;;;;:::o;36971:122::-;33729:10;;-1:-1:-1;;;;;33729:10:0;33715;:24;33707:33;;;;;;-1:-1:-1;;;;;37049:28:0::1;37080:5;37049:28:::0;;;:17:::1;:28;::::0;;;;:36;;-1:-1:-1;;37049:36:0::1;::::0;;36971:122::o;30490:68::-;;;;;;;;;;;;;;;;;;;;;;;;:::o;47672:93::-;47714:16;47750:7;47743:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;47743:14:0;;;;;;;;;;;;;;;;;;;;;;;47672:93;:::o;49161:128::-;49211:4;49239:9;49228:8;:20;-1:-1:-1;;;;;;49266:15:0;;;;;:7;:15;;;;;;;;;49161:128::o;33892:354::-;-1:-1:-1;;;;;33963:9:0;;;;;;:4;:9;;;;;;;;33955:40;;;;;-1:-1:-1;;;33955:40:0;;;;;;;;;;;;-1:-1:-1;;;33955:40:0;;;;;;;;;;;;;;;34006:9;34018:28;30089:5;34018:18;34032:3;;34018:9;:13;;:18;;;;:::i;:28::-;34006:40;-1:-1:-1;34077:42:0;34099:19;:9;34006:40;34099:13;:19::i;:::-;-1:-1:-1;;;;;34077:12:0;;;;;;:7;:12;;;;;;;;30189:3;34077:17;;;;;;;;;:21;:42::i;:::-;-1:-1:-1;;;;;34057:12:0;;;;;;;:7;:12;;;;;;;;30189:3;34057:17;;;;;;;;:62;;;;34138:10;;34130:34;;34138:10;;;;;34130:34;;;;;34159:4;;34130:34;;34057:12;34130:34;34159:4;34138:10;34130:34;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34182:56:0;;;34214:12;34182:56;;34228:9;34182:56;;;;;;34202:10;;-1:-1:-1;;;;;34182:56:0;;;30189:3;;34182:56;;;;;;;;;;;33892:354;;:::o;20259:49::-;;;;;;;;;;;;;;;:::o;61526:108::-;-1:-1:-1;;;;;61609:17:0;61585:4;61609:17;;;:8;:17;;;;;;;61526:108::o;48232:111::-;33729:10;;-1:-1:-1;;;;;33729:10:0;33715;:24;33707:33;;;;;;48306:4:::1;:29:::0;;-1:-1:-1;;;;;;48306:29:0::1;-1:-1:-1::0;;;;;48306:29:0;;;::::1;::::0;;;::::1;::::0;;48232:111::o;58019:201::-;33729:10;;-1:-1:-1;;;;;33729:10:0;33715;:24;33707:33;;;;;;-1:-1:-1;;;;;58085:15:0;::::1;58103:5;58085:15:::0;;;:7:::1;:15:::0;;;;;;;:23;;-1:-1:-1;;58085:23:0;;::::1;::::0;;;58119:9:::1;:17:::0;;;;;:24;;;;::::1;58085:23:::0;58119:24:::1;::::0;;58183:5:::1;:13:::0;;;;;58168:4:::1;58183:28:::0;;;;;;;;;58154:58:::1;::::0;58168:4;58093:6;;58154:5:::1;:58::i;38311:132::-:0;38428:6;;-1:-1:-1;;;;;38394:29:0;;38371:4;38394:29;;;:24;:29;;;;;;38371:4;;38394:41;;:29;:33;:41::i;23889:1191::-;23968:4;24007:12;23993:11;:26;23985:53;;;;;-1:-1:-1;;;23985:53:0;;;;;;;;;;;;-1:-1:-1;;;23985:53:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;24073:23:0;;24051:19;24073:23;;;:14;:23;;;;;;;;24111:17;24107:58;;24152:1;24145:8;;;;;24107:58;-1:-1:-1;;;;;24225:20:0;;;;;;:11;:20;;;;;;;;:38;-1:-1:-1;;24246:16:0;;24225:38;;;;;;;;;:48;;:63;-1:-1:-1;24221:147:0;;-1:-1:-1;;;;;24312:20:0;;;;;;:11;:20;;;;;;;;-1:-1:-1;;24333:16:0;;;;24312:38;;;;;;;;24348:1;24312:44;;;-1:-1:-1;24305:51:0;;24221:147;-1:-1:-1;;;;;24429:20:0;;;;;;:11;:20;;;;;;;;:23;;;;;;;;:33;:23;:33;:47;-1:-1:-1;24425:88:0;;;24500:1;24493:8;;;;;24425:88;24525:12;-1:-1:-1;;24567:16:0;;24594:428;24609:5;24601:13;;:5;:13;;;24594:428;;;24673:1;24656:13;;;24655:19;;;24647:27;;24716:20;;:::i;:::-;-1:-1:-1;;;;;;24739:20:0;;;;;;:11;:20;;;;;;;;:28;;;;;;;;;;;;;24716:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24786:27;;24782:229;;;24841:8;;;;-1:-1:-1;24834:15:0;;-1:-1:-1;;;;24834:15:0;24782:229;24875:12;;:26;;;-1:-1:-1;24871:140:0;;;24930:6;24922:14;;24871:140;;;24994:1;24985:6;:10;24977:18;;24871:140;24594:428;;;;;-1:-1:-1;;;;;;25039:20:0;;;;;;:11;:20;;;;;;;;:27;;;;;;;;;;:33;;;;-1:-1:-1;;23889:1191:0;;;;:::o;21178:39::-;;;;;;;;;;;;;:::o;47936:148::-;33729:10;;-1:-1:-1;;;;;33729:10:0;33715;:24;33707:33;;;;;;-1:-1:-1;;;;;48002:9:0;::::1;48014:5;48002:9:::0;;;:4:::1;:9;::::0;;;;;;;;:17;;-1:-1:-1;;48002:17:0::1;::::0;;48035:41;;48051:12:::1;48035:41:::0;;48065:10:::1;48035:41:::0;;::::1;::::0;;;;;;::::1;::::0;;;;;;;;;::::1;47936:148:::0;:::o;30151:42::-;30189:3;30151:42;:::o;32012:97::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;44321:126::-;44395:4;;44376:63;;44387:6;;-1:-1:-1;;;;;44395:4:0;:18;44414:23;44427:9;44414:8;;;:12;:23::i;:::-;44395:43;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;44395:43:0;44376:10;:63::i;34499:627::-;8056:1;8662:7;;:19;;8654:63;;;;;-1:-1:-1;;;8654:63:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;8654:63:0;;;;;;;;;;;;;;;8056:1;8795:7;:18;;;-1:-1:-1;;;;;34601:9:0;::::1;::::0;;:4:::1;:9;::::0;;;;;::::1;;34593:40;;;::::0;;-1:-1:-1;;;34593:40:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;34593:40:0;;;;;;;;;;;;;::::1;;34644:12;34666:6;-1:-1:-1::0;;;;;34659:24:0::1;;34692:4;34659:39;;;;;;;;;;;;;-1:-1:-1::0;;;;;34659:39:0::1;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;34659:39:0;;-1:-1:-1;34709:66:0::1;-1:-1:-1::0;;;;;34709:31:0;::::1;34741:10;34761:4;34768:6:::0;34709:31:::1;:66::i;:::-;34786:14;34803:52;34847:7;34810:6;-1:-1:-1::0;;;;;34803:24:0::1;;34836:4;34803:39;;;;;;;;;;;;;-1:-1:-1::0;;;;;34803:39:0::1;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;34803:39:0;;:43:::1;:52::i;:::-;34786:69;;34866:9;34878:28;30089:5;34878:18;34892:3;;34878:9;:13;;:18;;;;:::i;:28::-;34866:40:::0;-1:-1:-1;34940:45:0::1;34965:19;:9:::0;34866:40;34965:13:::1;:19::i;:::-;-1:-1:-1::0;;;;;34940:12:0;;::::1;;::::0;;;:7:::1;:12;::::0;;;;;;;:20;;::::1;::::0;;;;;;;;:24:::1;:45::i;:::-;-1:-1:-1::0;;;;;34917:12:0;;::::1;;::::0;;;:7:::1;:12;::::0;;;;;;;:20;;::::1;::::0;;;;;;;;:68;;;;35024:10:::1;::::0;34996:45:::1;::::0;34917:20;35024:10:::1;35036:4:::0;34996:27:::1;:45::i;:::-;35082:10;-1:-1:-1::0;;;;;35059:59:0::1;35077:3;-1:-1:-1::0;;;;;35059:59:0::1;35069:6;-1:-1:-1::0;;;;;35059:59:0::1;;35094:12;35108:9;35059:59;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;8012:1:0;8974:7;:22;-1:-1:-1;;;;34499:627:0:o;45532:402::-;45627:10;45622:16;;;;:4;:16;;;;;;;;45614:42;;;;;-1:-1:-1;;;45614:42:0;;;;;;;;;;;;-1:-1:-1;;;45614:42:0;;;;;;;;;;;;;;;45697:73;;;;;;;;;;;;;;;;;;;;45705:10;-1:-1:-1;45697:19:0;;;:7;:19;;;;;-1:-1:-1;;;;;45697:27:0;;;;;;;;;;;;:73;;45729:6;;45697:31;:73::i;:::-;45675:10;45667:19;;;;:7;:19;;;;;;;;-1:-1:-1;;;;;45667:27:0;;;;;;;;;;;;:103;;;;45781:15;;;;;:7;:15;;;;;45799:3;45781:21;;45813:43;;45789:6;45849;45813:27;:43::i;:::-;45872:54;;;45913:12;45872:54;;;;-1:-1:-1;;;;;45872:54:0;;;;45893:10;;45872:54;;;;;;;;;;;;;45532:402;;;:::o;19691:38::-;;;;;;;;;;;;;;-1:-1:-1;;;19691:38:0;;;;:::o;30375:62::-;;;;;;;;;;;;;;;;;;;;;;;;:::o;42965:94::-;33729:10;;-1:-1:-1;;;;;33729:10:0;33715;:24;33707:33;;;;;;43032:10:::1;::::0;43026:25:::1;::::0;-1:-1:-1;;;;;43032:10:0::1;43044:6:::0;43026:5:::1;:25::i;30748:57::-:0;;;;;;;;;;;;;;;;;;;;;;;;:::o;51202:837::-;8056:1;8662:7;;:19;;8654:63;;;;;-1:-1:-1;;;8654:63:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;8654:63:0;;;;;;;;;;;;;;;8056:1;8795:7;:18;;;51298:10:::1;51288:21:::0;;:9:::1;:21;::::0;;;;;::::1;;51287:22;51279:52;;;::::0;;-1:-1:-1;;;51279:52:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;51279:52:0;;;;;;;;;;;;;::::1;;51455:10;51446:20;::::0;;;:8:::1;:20;::::0;;;;;;;-1:-1:-1;;;;;51446:29:0;::::1;::::0;;;;;;;;51478:3:::1;51446:35:::0;;51515:4:::1;51496:24;51492:354;;;51537:50;51553:10;51573:4;51580:6;51537:15;:50::i;:::-;51492:354;;;51620:12;51642:7;-1:-1:-1::0;;;;;51635:25:0::1;;51669:4;51635:40;;;;;;;;;;;;;-1:-1:-1::0;;;;;51635:40:0::1;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;51635:40:0;;-1:-1:-1;51690:67:0::1;-1:-1:-1::0;;;;;51690:32:0;::::1;51723:10;51743:4;51750:6:::0;51690:32:::1;:67::i;:::-;51781:53;51826:7;51788;-1:-1:-1::0;;;;;51781:25:0::1;;51815:4;51781:40;;;;;;;;;;;;;-1:-1:-1::0;;;;;51781:40:0::1;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;:53;51772:62;;51492:354;;51905:10;51892:24;::::0;;;:12:::1;:24;::::0;;;;;;;-1:-1:-1;;;;;51892:33:0;::::1;::::0;;;;;;;;:45:::1;::::0;51930:6;51892:37:::1;:45::i;:::-;51869:10;51856:24;::::0;;;:12:::1;:24;::::0;;;;;;;-1:-1:-1;;;;;51856:33:0;::::1;::::0;;;;;;;;;:81;;;;51993:20;;;:8:::1;:20:::0;;;;;:29;;;;;;;;;;;51953:78;;51979:12:::1;51953:78:::0;;;;::::1;::::0;;;;;;;;;51869:10;;51953:78:::1;::::0;;;;;;;;::::1;-1:-1:-1::0;;8012:1:0;8974:7;:22;51202:837::o;55465:356::-;55542:10;55531:22;;;;:10;:22;;;;;;;;-1:-1:-1;;;;;55531:31:0;;;;;;;;;55565:3;55531:37;;55579:36;;55554:7;;55608:6;55579:7;:36::i;:::-;55683:10;55666:28;;;;:16;:28;;;;;;;;-1:-1:-1;;;;;55666:37:0;;;;;;;;;;:49;;55708:6;55666:41;:49::i;:::-;55643:10;55626:28;;;;:16;:28;;;;;;;;-1:-1:-1;;;;;55626:37:0;;;;;;;;;;;:89;;;;55773:22;;;:10;:22;;;;;:31;;;;;;;;;;;55731:82;;55759:12;55731:82;;;;;;;;;;;;;;55643:10;;55731:82;;;;;;;;;;55465:356;;:::o;61895:147::-;61955:4;61972:40;61988:10;62000:3;62005:6;61972:15;:40::i;:::-;-1:-1:-1;62030:4:0;61895:147;;;;:::o;48508:117::-;33729:10;;-1:-1:-1;;;;;33729:10:0;33715;:24;33707:33;;;;;;48586:17:::1;:31:::0;;-1:-1:-1;;;;;;48586:31:0::1;-1:-1:-1::0;;;;;48586:31:0;;;::::1;::::0;;;::::1;::::0;;48508:117::o;31177:40::-;;;;;;;;;;;;;;;:::o;52120:99::-;52165:16;52201:10;52194:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;52194:17:0;;;;;;;;;;;;;;;;;;;;;;52120:99;:::o;23238:220::-;-1:-1:-1;;;;;23342:23:0;;23303:4;23342:23;;;:14;:23;;;;;;;;23383:16;:67;;23449:1;23383:67;;;-1:-1:-1;;;;;23402:20:0;;;;;;:11;:20;;;;;;;;:38;-1:-1:-1;;23423:16:0;;23402:38;;;;;;;;23438:1;23402:44;;23383:67;23376:74;23238:220;-1:-1:-1;;;23238:220:0:o;36578:239::-;33729:10;;-1:-1:-1;;;;;33729:10:0;33715;:24;33707:33;;;;;;-1:-1:-1;;;;;36666:28:0;::::1;;::::0;;;:17:::1;:28;::::0;;;;;::::1;;36665:29;36657:65;;;::::0;;-1:-1:-1;;;36657:65:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;-1:-1:-1::0;;;;;36733:28:0::1;;::::0;;;:17:::1;:28;::::0;;;;:35;;-1:-1:-1;;36733:35:0::1;36764:4;36733:35:::0;;::::1;::::0;;;36779:14:::1;:30:::0;;;;::::1;::::0;;;;;;::::1;::::0;;-1:-1:-1;;;;;;36779:30:0::1;::::0;;::::1;::::0;;36578:239::o;31870:90::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;29719:25::-;;;;:::o;22433:604::-;22580:57;;;20812:65;22580:57;;;;;;;;-1:-1:-1;;;;;22580:57:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22570:68;;;;;;-1:-1:-1;;;22676:57:0;;;;22705:15;22676:57;;;;;;;;;;;;;;;;;;;;;;;;;;;22666:68;;;;;;;;;22549:18;22765:26;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22570:68;;22666;22549:18;;22765:26;;;;;;;-1:-1:-1;;22765:26:0;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;22765:26:0;;-1:-1:-1;;22765:26:0;;;-1:-1:-1;;;;;;;22810:23:0;;22802:54;;;;;-1:-1:-1;;;22802:54:0;;;;;;;;;;;;-1:-1:-1;;;22802:54:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;22884:17:0;;;;;;:6;:17;;;;;:19;;;;;;;;22875:28;;22867:61;;;;;-1:-1:-1;;;22867:61:0;;;;;;;;;;;;-1:-1:-1;;;22867:61:0;;;;;;;;;;;;;;;22954:6;22947:3;:13;;22939:48;;;;;-1:-1:-1;;;22939:48:0;;;;;;;;;;;;-1:-1:-1;;;22939:48:0;;;;;;;;;;;;;;;22998:31;23008:9;23019;22998;:31::i;:::-;22433:604;;;;;;;;;:::o;47346:221::-;33729:10;;-1:-1:-1;;;;;33729:10:0;33715;:24;33707:33;;;;;;-1:-1:-1;;;;;47418:9:0;::::1;;::::0;;;:4:::1;:9;::::0;;;;;::::1;;47417:10;47409:40;;;::::0;;-1:-1:-1;;;47409:40:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;47409:40:0;;;;;;;;;;;;;::::1;;-1:-1:-1::0;;;;;47460:9:0;::::1;;::::0;;;:4:::1;:9;::::0;;;;;;;:16;;-1:-1:-1;;47460:16:0::1;47472:4;47460:16:::0;;::::1;::::0;;;47487:7:::1;:17:::0;;;;::::1;::::0;;;;;;;;::::1;::::0;;-1:-1:-1;;;;;;47487:17:0::1;::::0;::::1;::::0;;47520:39;;47534:12:::1;47520:39:::0;;47548:10:::1;47520:39:::0;;::::1;::::0;;;;;;::::1;::::0;;;;;;;;;::::1;47346:221:::0;:::o;30034:20::-;;;;:::o;35698:241::-;33729:10;;-1:-1:-1;;;;;33729:10:0;33715;:24;33707:33;;;;;;-1:-1:-1;;;;;35796:12:0;::::1;;::::0;;;:5:::1;:12;::::0;;;;;:24:::1;::::0;35813:6;35796:16:::1;:24::i;:::-;-1:-1:-1::0;;;;;35781:12:0;::::1;;::::0;;;:5:::1;:12;::::0;;;;:39;35845:11:::1;::::0;:23:::1;::::0;35861:6;35845:15:::1;:23::i;:::-;35831:11;:37:::0;-1:-1:-1;;;;;35894:16:0;;::::1;;::::0;;;:9:::1;:16;::::0;;;;;35879:52:::1;::::0;35894:16:::1;::::0;35924:6;35879:14:::1;:52::i;:::-;35698:241:::0;;:::o;59928:232::-;60035:10;60001:4;60018:28;;;:16;:28;;;;;;;;-1:-1:-1;;;;;60018:37:0;;;;;;;;;;;:46;;-1:-1:-1;;60018:46:0;;;;;;;;;;60082:48;;;;;;;60001:4;;60018:37;;60035:10;;60082:48;;;;;;;;-1:-1:-1;60148:4:0;59928:232;;;;:::o;31282:39::-;;;;;;;;;;;;;:::o;60647:676::-;-1:-1:-1;;;;;60857:13:0;;;60774:18;60857:13;;;:6;:13;;;;;;;;:15;;;;;;;;;60805:78;;21009:86;60805:78;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60795:89;;;;;;-1:-1:-1;;;60922:57:0;;;;60951:15;60922:57;;;;;;;;;;;;;;;;;;;;;;;;;;;60912:68;;;;;;;;;61011:26;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60795:89;;60912:68;;60857:15;;61011:26;;;;;60857:13;;-1:-1:-1;;61011:26:0;;;;;;;;;;60857:15;61011:26;;;;;;;;;;;;;;;-1:-1:-1;;61011:26:0;;-1:-1:-1;;61011:26:0;;;-1:-1:-1;;;;;;;61056:23:0;;61048:53;;;;;-1:-1:-1;;;61048:53:0;;;;;;;;;;;;-1:-1:-1;;;61048:53:0;;;;;;;;;;;;;;;61133:5;-1:-1:-1;;;;;61120:18:0;:9;-1:-1:-1;;;;;61120:18:0;;61112:51;;;;;-1:-1:-1;;;61112:51:0;;;;;;;;;;;;-1:-1:-1;;;61112:51:0;;;;;;;;;;;;;;;61189:8;61182:3;:15;;61174:43;;;;;-1:-1:-1;;;61174:43:0;;;;;;;;;;;;-1:-1:-1;;;61174:43:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;61230:17:0;;;;;;;:10;:17;;;;;;;;:26;;;;;;;;;;;;;:35;;;61283:32;;;;;;;;;;;;;;;;;60647:676;;;;;;;;;;:::o;30876:37::-;;;;;;;;;;;;;:::o;58812:136::-;-1:-1:-1;;;;;58912:19:0;;;58888:4;58912:19;;;:10;:19;;;;;;;;:28;;;;;;;;;;;;;58812:136::o;35289:238::-;33729:10;;-1:-1:-1;;;;;33729:10:0;33715;:24;33707:33;;;;;;-1:-1:-1;;;;;35384:12:0;::::1;;::::0;;;:5:::1;:12;::::0;;;;;:24:::1;::::0;35401:6;35384:16:::1;:24::i;:::-;-1:-1:-1::0;;;;;35369:12:0;::::1;;::::0;;;:5:::1;:12;::::0;;;;:39;35433:11:::1;::::0;:23:::1;::::0;35449:6;35433:15:::1;:23::i;:::-;35419:11;:37:::0;-1:-1:-1;;;;;35494:16:0;;::::1;35490:1;35494:16:::0;;;:9:::1;:16;::::0;;;;;35467:52:::1;::::0;35494:16:::1;35512:6:::0;35467:14:::1;:52::i;30624:64::-:0;;;;;;;;;;;;;;;;;;;;;;;;:::o;31732:89::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;31069:41::-;;;;;;;;;;;;;:::o;54419:855::-;-1:-1:-1;;;;;54515:28:0;;;;;;;:22;:28;;;;;;;;:32;;;;;;;;;;:41;;;;;;;;;;;;54507:83;;;;;-1:-1:-1;;;54507:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;54601:14;54612:2;54601:10;:14::i;:::-;-1:-1:-1;;;;;54681:13:0;;;54697:5;54681:13;;;:7;:13;;;;;;;:21;;-1:-1:-1;;54681:21:0;;;;;;54760:11;;;;;;;;:18;;;;;54681:21;54760:18;;;54840:11;;;:5;:11;;;;;:20;;;;;;;;;;;;54871:33;54852:7;54689:4;54840:20;54871:7;:33::i;:::-;54943:29;54949:7;54957:2;54960:11;54943:5;:29::i;:::-;-1:-1:-1;;;;;55033:28:0;;;55077:5;55033:28;;;:22;:28;;;;;;;;:32;;;;;;;;;;;;:41;;;;;;;;;;;;:49;;-1:-1:-1;;55033:49:0;;;;;;55170:22;;;:16;:22;;;;;55193:10;55170:34;;;;;;;;:42;;;;;;;;55228:38;55033:32;;:28;55228:38;;;54419:855;;;;:::o;57429:446::-;8056:1;8662:7;;:19;;8654:63;;;;;-1:-1:-1;;;8654:63:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;8654:63:0;;;;;;;;;;;;;;;8056:1;8795:7;:18;33729:10:::1;::::0;-1:-1:-1;;;;;33729:10:0::1;33715;:24;33707:33;;;::::0;::::1;;-1:-1:-1::0;;;;;57538:23:0;::::2;57556:4;57538:23;57534:186;;;57609:10;::::0;57578:50:::2;::::0;57602:4:::2;::::0;-1:-1:-1;;;;;57609:10:0::2;57621:6:::0;57578:15:::2;:50::i;:::-;57534:186;;;57689:10;::::0;57661:47:::2;::::0;-1:-1:-1;;;;;57661:27:0;;::::2;::::0;57689:10:::2;57701:6:::0;57661:27:::2;:47::i;:::-;57730:31;57738:6;57746;57754;57730:7;:31::i;:::-;-1:-1:-1::0;;;;;57772:16:0;::::2;57791:5;57772:16:::0;;;:8:::2;:16;::::0;;;;;;;;:24;;-1:-1:-1;;57772:24:0::2;::::0;;57812:55;;57846:12:::2;57812:55:::0;;;;::::2;::::0;;;;;57834:10:::2;::::0;57772:16;57812:55:::2;::::0;;;;;;::::2;-1:-1:-1::0;;8012:1:0;8974:7;:22;-1:-1:-1;57429:446:0:o;20766:111::-;20812:65;20766:111;:::o;33308:49::-;;;;;;;;;;;;;;;:::o;30061:33::-;30089:5;30061:33;:::o;32957:27::-;;;;;;;;;;20120:70;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;33198:32::-;;;-1:-1:-1;;;;;33198:32:0;;:::o;57042:149::-;33729:10;;-1:-1:-1;;;;;33729:10:0;33715;:24;33707:33;;;;;;-1:-1:-1;;;;;57109:16:0;::::1;;::::0;;;:8:::1;:16;::::0;;;;;;;;:23;;-1:-1:-1;;57109:23:0::1;57128:4;57109:23;::::0;;57148:35;;57170:12:::1;57148:35:::0;;;;::::1;::::0;;;;;;;;::::1;57042:149:::0;:::o;50666:344::-;50775:4;50803:9;50792:8;:20;-1:-1:-1;;;;;50830:15:0;;;;;;:7;:15;;;;;;;;:66;;;;-1:-1:-1;;;;;;50866:13:0;;;;;;;:5;:13;;;;;;;;:19;;;;;;;;;;:30;-1:-1:-1;50866:30:0;50830:66;:118;;;;-1:-1:-1;;;;;;50917:21:0;;;;;;:13;:21;;;;;;:31;-1:-1:-1;50917:31:0;50830:118;:172;;;;-1:-1:-1;;;;;;50977:17:0;;;;;;:9;:17;;;;;;50999:3;;50969:26;;:3;;:7;:26::i;:::-;:33;;50830:172;50823:179;50666:344;-1:-1:-1;;;;;;50666:344:0:o;32642:41::-;;;;;;;;;;;;;;;:::o;32252:88::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;38113:98::-;38153:16;38189:14;38182:21;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;38182:21:0;;;;;;;;;;;;;;;;;;;;;;38113:98;:::o;1019:148::-;1071:4;1097:5;;;1121:6;;;;1113:25;;;;;-1:-1:-1;;;1113:25:0;;;;;;;;;;;;-1:-1:-1;;;1113:25:0;;;;;;;;;;;;;;2682:432;2734:4;2976:6;2972:47;;-1:-1:-1;3006:1:0;2999:8;;2972:47;3040:5;;;3044:1;3040;:5;:1;3064:5;;;;;:10;3056:29;;;;;-1:-1:-1;;;3056:29:0;;;;;;;;;;;;-1:-1:-1;;;3056:29:0;;;;;;;;;;;;;;4289:103;4341:4;4365:19;4369:1;4372;4365:19;;;;;;;;;;;;;-1:-1:-1;;;4365:19:0;;;:3;:19::i;43550:293::-;-1:-1:-1;;;;;43619:17:0;;43611:49;;;;;-1:-1:-1;;;43611:49:0;;;;;;;;;;;;-1:-1:-1;;;43611:49:0;;;;;;;;;;;;;;;43687:51;;;;;;;;;;;-1:-1:-1;;;43687:51:0;;;;;;;;-1:-1:-1;;;;;43687:13:0;;-1:-1:-1;43687:13:0;;;:8;:13;;;;;;;;:51;;43705:6;;43687:17;:51::i;:::-;-1:-1:-1;;;;;43671:13:0;;;;;;:8;:13;;;;;:67;43763:11;;:23;;43779:6;43763:15;:23::i;:::-;43749:11;:37;43802:33;;;;;;;;43824:1;;-1:-1:-1;;;;;43802:33:0;;;;;;;;;;;;43550:293;;:::o;1867:103::-;1919:4;1943:19;1947:1;1950;1943:19;;;;;;;;;;;;;-1:-1:-1;;;1943:19:0;;;:3;:19::i;52361:209::-;-1:-1:-1;;;;;52421:17:0;;;;;;:9;:17;;;;;;52417:146;;-1:-1:-1;;;;;52458:17:0;;;;;:9;:17;;;;;;;;52478:3;52458:23;;;;52494:10;:23;;;;;;;;;;;;-1:-1:-1;;;;;;52494:23:0;;;;;;;52530:7;:15;;;;;:21;52361:209::o;46533:320::-;-1:-1:-1;;;;;46638:12:0;;;;;;;:5;:12;;;;;;;;:21;;;;;;;;;;:34;;46664:7;46638:25;:34::i;:::-;-1:-1:-1;;;;;46614:12:0;;;;;;;:5;:12;;;;;;;;:21;;;;;;;;;;;;:58;;;;46706:4;46687:24;46683:163;;;46742:11;;:24;;46758:7;46742:15;:24::i;:::-;46728:11;:38;-1:-1:-1;;;;;46808:16:0;;;46804:1;46808:16;;;:9;:16;;;;;;46781:53;;46808:16;46826:7;46781:14;:53::i;:::-;46533:320;;;:::o;2259:180::-;2339:4;2372:12;2364:6;;;;2356:29;;;;-1:-1:-1;;;2356:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;2405:5:0;;;2259:180::o;62910:369::-;-1:-1:-1;;;;;63002:17:0;;62994:59;;;;;-1:-1:-1;;;62994:59:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;63072:17:0;;63064:59;;;;;-1:-1:-1;;;63064:59:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;63152:13:0;;;;;;:8;:13;;;;;;:25;;63170:6;63152:17;:25::i;:::-;-1:-1:-1;;;;;63136:13:0;;;;;;;:8;:13;;;;;;:41;;;;63204:13;;;;;;;:25;;63222:6;63204:17;:25::i;:::-;-1:-1:-1;;;;;63188:13:0;;;;;;;:8;:13;;;;;;;;;:41;;;;63245:26;;;;;;;63188:13;;63245:26;;;;;;;;;;;;;62910:369;;;:::o;43258:284::-;43361:11;;:23;;43377:6;43361:15;:23::i;:::-;43347:11;:37;-1:-1:-1;;;;;43460:13:0;;;;;;:8;:13;;;;;;:25;;43478:6;43460:17;:25::i;:::-;-1:-1:-1;;;;;43444:13:0;;;;;;:8;:13;;;;;;;;:41;;;;43501:33;;;;;;;43444:13;;;;43501:33;;;;;;;;;;43258:284;;:::o;15232:176::-;15341:58;;;-1:-1:-1;;;;;15341:58:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;15341:58:0;-1:-1:-1;;;15341:58:0;;;15315:85;;15334:5;;15315:18;:85::i;15416:204::-;15543:68;;;-1:-1:-1;;;;;15543:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;15543:68:0;-1:-1:-1;;;15543:68:0;;;15517:95;;15536:5;;15517:18;:95::i;:::-;15416:204;;;;:::o;25088:407::-;-1:-1:-1;;;;;25191:20:0;;;25165:23;25191:20;;;:9;:20;;;;;;;;;25267:5;:16;;;;;25292:4;25267:31;;;;;;;;25246:16;;;:5;:16;;;;;;25191:20;;;25165:23;;25246:53;;:16;:20;:53::i;:::-;-1:-1:-1;;;;;25310:20:0;;;;;;;:9;:20;;;;;;:32;;-1:-1:-1;;;;;;25310:32:0;;;;;;;;;;25360:54;;25222:77;;-1:-1:-1;25310:32:0;25360:54;;;;;;25310:20;25360:54;25427:60;25442:15;25459:9;25470:16;25427:14;:60::i;46861:324::-;-1:-1:-1;;;;;46968:12:0;;;;;;;:5;:12;;;;;;;;:21;;;;;;;;;;:34;;46994:7;46968:25;:34::i;:::-;-1:-1:-1;;;;;46944:12:0;;;;;;;:5;:12;;;;;;;;:21;;;;;;;;;;;;:58;;;;47036:4;47017:24;47013:163;;;47072:11;;:24;;47088:7;47072:15;:24::i;:::-;47058:11;:38;-1:-1:-1;;;;;47126:16:0;;;;;;;:9;:16;;;;;;47111:53;;47126:16;;47156:7;25503:862;25606:6;-1:-1:-1;;;;;25596:16:0;:6;-1:-1:-1;;;;;25596:16:0;;;:30;;;;;25625:1;25616:6;:10;25596:30;25592:766;;;-1:-1:-1;;;;;25647:20:0;;;25643:357;;-1:-1:-1;;;;;25707:22:0;;25688:16;25707:22;;;:14;:22;;;;;;;;;25765:13;:60;;25824:1;25765:60;;;-1:-1:-1;;;;;25781:19:0;;;;;;:11;:19;;;;;;;;:34;-1:-1:-1;;25801:13:0;;25781:34;;;;;;;;25813:1;25781:40;;25765:60;25748:77;;25844:14;25861:47;25875:6;25861:47;;;;;;;;;;;;;-1:-1:-1;;;25861:47:0;;;:9;:13;;:47;;;;;:::i;:::-;25844:64;;25927:57;25944:6;25952:9;25963;25974;25927:16;:57::i;:::-;25643:357;;;;-1:-1:-1;;;;;26020:20:0;;;26016:331;;-1:-1:-1;;;;;26080:22:0;;26061:16;26080:22;;;:14;:22;;;;;;;;;26138:13;:60;;26197:1;26138:60;;;-1:-1:-1;;;;;26154:19:0;;;;;;:11;:19;;;;;;;;:34;-1:-1:-1;;26174:13:0;;26154:34;;;;;;;;26186:1;26154:40;;26138:60;26121:77;-1:-1:-1;26217:14:0;26234:21;26121:77;26248:6;26234:13;:21::i;:::-;26217:38;;26274:57;26291:6;26299:9;26310;26321;26274:16;:57::i;:::-;26016:331;;;25503:862;;;:::o;4880:333::-;4960:4;5059:12;5052:5;5044:28;;;;-1:-1:-1;;;5044:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5083:6;5096:1;5092;:5;;;;;;;4880:333;-1:-1:-1;;;;;4880:333:0:o;17244:1080::-;17848:27;17856:5;-1:-1:-1;;;;;17848:25:0;;:27::i;:::-;17840:60;;;;;-1:-1:-1;;;17840:60:0;;;;;;;;;;;;-1:-1:-1;;;17840:60:0;;;;;;;;;;;;;;;17974:12;17988:23;18023:5;-1:-1:-1;;;;;18015:19:0;18035:4;18015:25;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;18015:25:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17973:67;;;;18059:7;18051:52;;;;;-1:-1:-1;;;18051:52:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18120:17;;:21;18116:201;;18262:10;18251:30;;;;;;;;;;;;;;;-1:-1:-1;18251:30:0;18243:62;;;;;-1:-1:-1;;;18243:62:0;;;;;;;;;;;;-1:-1:-1;;;18243:62:0;;;;;;;;;;;;;;26373:598;26487:18;26508:49;26515:12;26508:49;;;;;;;;;;;;;;;;;:6;:49::i;:::-;26487:70;;26587:1;26572:12;:16;;;:85;;;;-1:-1:-1;;;;;;26592:22:0;;;;;;:11;:22;;;;;;;;:65;-1:-1:-1;;26615:16:0;;26592:40;;;;;;;;;:50;:65;;;:50;;:65;26572:85;26568:329;;;-1:-1:-1;;;;;26672:22:0;;;;;;:11;:22;;;;;;;;:40;-1:-1:-1;;26695:16:0;;26672:40;;;;;;;;26710:1;26672:46;:57;;;26568:329;;;26797:33;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;26758:22:0;;-1:-1:-1;26758:22:0;;;:11;:22;;;;;:36;;;;;;;;;;:72;;;;;;;-1:-1:-1;;26758:72:0;;;;;;;;;;;;;26843:25;;;:14;:25;;;;;;:44;;26871:16;;;26843:44;;;;;;;;;;26568:329;26912:51;;;;;;;;;;;;;;-1:-1:-1;;;;;26912:51:0;;;;;;;;;;;26373:598;;;;;:::o;12405:619::-;12465:4;12933:20;;12776:66;12973:23;;;;;;:42;;-1:-1:-1;13000:15:0;;;12973:42;12965:51;12405:619;-1:-1:-1;;;;12405:619:0:o;26979:161::-;27054:6;27092:12;27085:5;27081:9;;27073:32;;;;-1:-1:-1;;;27073:32:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;27130:1:0;;26979:161;-1:-1:-1;;26979:161:0:o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;:::o
Swarm Source
ipfs://5bbc8c005f47a337e632e6340b106c762ee4daf267ed5a8f5db4cf82a9bbdd4c
Loading...
Loading
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.