Feature Tip: Add private address tag to any address under My Name Tag !
Overview
Max Total Supply
20,680,157.5247265044884365 CARROT
Holders
986 (0.00%)
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
133.33334 CARROTValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
CarrotSwap
Compiler Version
v0.5.17+commit.d19bba13
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2020-12-26 */ /* * ______ ______ _______ _______ ______ ________ ______ __ __ ______ _______ * / \ / \| \| \ / \| \/ \| \ _ | \/ \| \ *| ▓▓▓▓▓▓\ ▓▓▓▓▓▓\ ▓▓▓▓▓▓▓\ ▓▓▓▓▓▓▓\ ▓▓▓▓▓▓\\▓▓▓▓▓▓▓▓ ▓▓▓▓▓▓\ ▓▓ / \ | ▓▓ ▓▓▓▓▓▓\ ▓▓▓▓▓▓▓\ *| ▓▓ \▓▓ ▓▓__| ▓▓ ▓▓__| ▓▓ ▓▓__| ▓▓ ▓▓ | ▓▓ | ▓▓ | ▓▓___\▓▓ ▓▓/ ▓\| ▓▓ ▓▓__| ▓▓ ▓▓__/ ▓▓ *| ▓▓ | ▓▓ ▓▓ ▓▓ ▓▓ ▓▓ ▓▓ ▓▓ | ▓▓ | ▓▓ \▓▓ \| ▓▓ ▓▓▓\ ▓▓ ▓▓ ▓▓ ▓▓ ▓▓ *| ▓▓ __| ▓▓▓▓▓▓▓▓ ▓▓▓▓▓▓▓\ ▓▓▓▓▓▓▓\ ▓▓ | ▓▓ | ▓▓ _\▓▓▓▓▓▓\ ▓▓ ▓▓\▓▓\▓▓ ▓▓▓▓▓▓▓▓ ▓▓▓▓▓▓▓ *| ▓▓__/ \ ▓▓ | ▓▓ ▓▓ | ▓▓ ▓▓ | ▓▓ ▓▓__/ ▓▓ | ▓▓ | \__| ▓▓ ▓▓▓▓ \▓▓▓▓ ▓▓ | ▓▓ ▓▓ * \▓▓ ▓▓ ▓▓ | ▓▓ ▓▓ | ▓▓ ▓▓ | ▓▓\▓▓ ▓▓ | ▓▓ \▓▓ ▓▓ ▓▓▓ \▓▓▓ ▓▓ | ▓▓ ▓▓ * \▓▓▓▓▓▓ \▓▓ \▓▓\▓▓ \▓▓\▓▓ \▓▓ \▓▓▓▓▓▓ \▓▓ \▓▓▓▓▓▓ \▓▓ \▓▓\▓▓ \▓▓\▓▓ * */ // File: @openzeppelin/contracts/GSN/Context.sol pragma solidity ^0.5.0; /* * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with GSN meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ contract Context { // Empty internal constructor, to prevent people from mistakenly deploying // an instance of this contract, which should be used via inheritance. constructor () internal { } // solhint-disable-previous-line no-empty-blocks function _msgSender() internal view returns (address payable) { return msg.sender; } function _msgData() internal view returns (bytes memory) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } // File: @openzeppelin/contracts/token/ERC20/IERC20.sol pragma solidity ^0.5.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. Does not include * the optional functions; to access them see {ERC20Detailed}. */ 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); } // File: @openzeppelin/contracts/math/SafeMath.sol pragma solidity ^0.5.0; /** * @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(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; require(c >= a, "SafeMath: addition overflow"); return c; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return sub(a, b, "SafeMath: subtraction overflow"); } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * - Subtraction cannot overflow. * * _Available since v2.4.0._ */ function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b <= a, errorMessage); uint256 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(uint256 a, uint256 b) internal pure returns (uint256) { // 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; } uint256 c = a * b; require(c / a == b, "SafeMath: multiplication overflow"); 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(uint256 a, uint256 b) internal pure returns (uint256) { return div(a, b, "SafeMath: division by zero"); } /** * @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. * * _Available since v2.4.0._ */ function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { // Solidity only automatically asserts when dividing by 0 require(b > 0, errorMessage); uint256 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(uint256 a, uint256 b) internal pure returns (uint256) { return mod(a, b, "SafeMath: modulo by zero"); } /** * @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. * * _Available since v2.4.0._ */ function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b != 0, errorMessage); return a % b; } } // File: @openzeppelin/contracts/token/ERC20/ERC20.sol pragma solidity ^0.5.0; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20Mintable}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin guidelines: functions revert instead * of returning `false` on failure. This behavior is nonetheless conventional * and does not conflict with the expectations of ERC20 applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20 { using SafeMath for uint256; mapping (address => uint256) private _balances; mapping (address => mapping (address => uint256)) private _allowances; uint256 private _totalSupply; /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}; * * Requirements: * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for `sender`'s tokens of at least * `amount`. */ function transferFrom(address sender, address recipient, uint256 amount) public returns (bool) { _transfer(sender, recipient, amount); _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance")); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue)); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero")); return true; } /** * @dev Moves tokens `amount` from `sender` to `recipient`. * * This is internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer(address sender, address recipient, uint256 amount) internal { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance"); _balances[recipient] = _balances[recipient].add(amount); emit Transfer(sender, recipient, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements * * - `to` cannot be the zero address. */ function _mint(address account, uint256 amount) internal { require(account != address(0), "ERC20: mint to the zero address"); _totalSupply = _totalSupply.add(amount); _balances[account] = _balances[account].add(amount); emit Transfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal { require(account != address(0), "ERC20: burn from the zero address"); _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance"); _totalSupply = _totalSupply.sub(amount); emit Transfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner`s tokens. * * This is internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve(address owner, address spender, uint256 amount) internal { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Destroys `amount` tokens from `account`.`amount` is then deducted * from the caller's allowance. * * See {_burn} and {_approve}. */ function _burnFrom(address account, uint256 amount) internal { _burn(account, amount); _approve(account, _msgSender(), _allowances[account][_msgSender()].sub(amount, "ERC20: burn amount exceeds allowance")); } } // File: @openzeppelin/contracts/token/ERC20/ERC20Burnable.sol pragma solidity ^0.5.0; /** * @dev Extension of {ERC20} that allows token holders to destroy both their own * tokens and those that they have an allowance for, in a way that can be * recognized off-chain (via event analysis). */ contract ERC20Burnable is Context, ERC20 { /** * @dev Destroys `amount` tokens from the caller. * * See {ERC20-_burn}. */ function burn(uint256 amount) public { _burn(_msgSender(), amount); } /** * @dev See {ERC20-_burnFrom}. */ function burnFrom(address account, uint256 amount) public { _burnFrom(account, amount); } } // File: @openzeppelin/contracts/access/Roles.sol pragma solidity ^0.5.0; /** * @title Roles * @dev Library for managing addresses assigned to a Role. */ library Roles { struct Role { mapping (address => bool) bearer; } /** * @dev Give an account access to this role. */ function add(Role storage role, address account) internal { require(!has(role, account), "Roles: account already has role"); role.bearer[account] = true; } /** * @dev Remove an account's access to this role. */ function remove(Role storage role, address account) internal { require(has(role, account), "Roles: account does not have role"); role.bearer[account] = false; } /** * @dev Check if an account has this role. * @return bool */ function has(Role storage role, address account) internal view returns (bool) { require(account != address(0), "Roles: account is the zero address"); return role.bearer[account]; } } // File: @openzeppelin/contracts/access/roles/MinterRole.sol pragma solidity ^0.5.0; contract MinterRole is Context { using Roles for Roles.Role; event MinterAdded(address indexed account); event MinterRemoved(address indexed account); Roles.Role private _minters; constructor () internal { _addMinter(_msgSender()); } modifier onlyMinter() { require(isMinter(_msgSender()), "MinterRole: caller does not have the Minter role"); _; } function isMinter(address account) public view returns (bool) { return _minters.has(account); } function addMinter(address account) public onlyMinter { _addMinter(account); } function renounceMinter() public { _removeMinter(_msgSender()); } function _addMinter(address account) internal { _minters.add(account); emit MinterAdded(account); } function _removeMinter(address account) internal { _minters.remove(account); emit MinterRemoved(account); } } // File: @openzeppelin/contracts/token/ERC20/ERC20Mintable.sol pragma solidity ^0.5.0; /** * @dev Extension of {ERC20} that adds a set of accounts with the {MinterRole}, * which have permission to mint (create) new tokens as they see fit. * * At construction, the deployer of the contract is the only minter. */ contract ERC20Mintable is ERC20, MinterRole { /** * @dev See {ERC20-_mint}. * * Requirements: * * - the caller must have the {MinterRole}. */ function mint(address account, uint256 amount) public onlyMinter returns (bool) { _mint(account, amount); return true; } } // File: @openzeppelin/contracts/token/ERC20/ERC20Detailed.sol pragma solidity ^0.5.0; /** * @dev Optional functions from the ERC20 standard. */ contract ERC20Detailed is IERC20 { string private _name; string private _symbol; uint8 private _decimals; /** * @dev Sets the values for `name`, `symbol`, and `decimals`. All three of * these values are immutable: they can only be set once during * construction. */ constructor (string memory name, string memory symbol, uint8 decimals) public { _name = name; _symbol = symbol; _decimals = decimals; } /** * @dev Returns the name of the token. */ function name() public view returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5,05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view returns (uint8) { return _decimals; } } // File: @openzeppelin/contracts/access/roles/WhitelistAdminRole.sol pragma solidity ^0.5.0; /** * @title WhitelistAdminRole * @dev WhitelistAdmins are responsible for assigning and removing Whitelisted accounts. */ contract WhitelistAdminRole is Context { using Roles for Roles.Role; event WhitelistAdminAdded(address indexed account); event WhitelistAdminRemoved(address indexed account); Roles.Role private _whitelistAdmins; constructor () internal { _addWhitelistAdmin(_msgSender()); } modifier onlyWhitelistAdmin() { require(isWhitelistAdmin(_msgSender()), "WhitelistAdminRole: caller does not have the WhitelistAdmin role"); _; } function isWhitelistAdmin(address account) public view returns (bool) { return _whitelistAdmins.has(account); } function addWhitelistAdmin(address account) public onlyWhitelistAdmin { _addWhitelistAdmin(account); } function renounceWhitelistAdmin() public { _removeWhitelistAdmin(_msgSender()); } function _addWhitelistAdmin(address account) internal { _whitelistAdmins.add(account); emit WhitelistAdminAdded(account); } function _removeWhitelistAdmin(address account) internal { _whitelistAdmins.remove(account); emit WhitelistAdminRemoved(account); } } // File: contracts/ERC20/ERC20TransferLiquidityLock.sol pragma solidity ^0.5.17; contract ERC20TransferLiquidityLock is ERC20 { using SafeMath for uint256; event LockLiquidity(uint256 tokenAmount, uint256 ethAmount); event BurnLiquidity(uint256 lpTokenAmount); event RewardLiquidityProviders(uint256 tokenAmount); address public uniswapV2Router; address public uniswapV2Pair; // the amount of tokens to lock for liquidity during every transfer, i.e. 100 = 1%, 50 = 2%, 40 = 2.5% uint256 public liquidityLockDivisor; uint256 public liquidityRewardsDivisor; function _transfer(address from, address to, uint256 amount) internal { // calculate liquidity lock amount // dont transfer burn from this contract // or can never lock full lockable amount if (liquidityLockDivisor != 0 && from != address(this)) { uint256 liquidityLockAmount = amount.div(liquidityLockDivisor); super._transfer(from, address(this), liquidityLockAmount); super._transfer(from, to, amount.sub(liquidityLockAmount)); } else { super._transfer(from, to, amount); } } // Receive eth from uniswap swap function () external payable {} function lockLiquidity(uint256 _lockableSupply) public { // lockable supply is the token balance of this contract require(_lockableSupply <= balanceOf(address(this)), "ERC20TransferLiquidityLock::lockLiquidity: lock amount higher than lockable balance"); require(_lockableSupply != 0, "ERC20TransferLiquidityLock::lockLiquidity: lock amount cannot be 0"); // reward liquidity providers if needed if (liquidityRewardsDivisor != 0) { // if no balance left to lock, don't lock if (liquidityRewardsDivisor == 1) { _rewardLiquidityProviders(_lockableSupply); return; } uint256 liquidityRewards = _lockableSupply.div(liquidityRewardsDivisor); _lockableSupply = _lockableSupply.sub(liquidityRewards); _rewardLiquidityProviders(liquidityRewards); } uint256 amountToSwapForEth = _lockableSupply.div(2); uint256 amountToAddLiquidity = _lockableSupply.sub(amountToSwapForEth); // needed in case contract already owns eth uint256 ethBalanceBeforeSwap = address(this).balance; swapTokensForEth(amountToSwapForEth); uint256 ethReceived = address(this).balance.sub(ethBalanceBeforeSwap); addLiquidity(amountToAddLiquidity, ethReceived); emit LockLiquidity(amountToAddLiquidity, ethReceived); } // external util so anyone can easily distribute rewards // must call lockLiquidity first which automatically // calls _rewardLiquidityProviders function rewardLiquidityProviders() external { // lock everything that is lockable lockLiquidity(balanceOf(address(this))); } function _rewardLiquidityProviders(uint256 liquidityRewards) private { // avoid burn by calling super._transfer directly super._transfer(address(this), uniswapV2Pair, liquidityRewards); IUniswapV2Pair(uniswapV2Pair).sync(); emit RewardLiquidityProviders(liquidityRewards); } function burnLiquidity() external { uint256 balance = ERC20(uniswapV2Pair).balanceOf(address(this)); require(balance != 0, "ERC20TransferLiquidityLock::burnLiquidity: burn amount cannot be 0"); ERC20(uniswapV2Pair).transfer(address(0), balance); emit BurnLiquidity(balance); } function swapTokensForEth(uint256 tokenAmount) private { address[] memory uniswapPairPath = new address[](2); uniswapPairPath[0] = address(this); uniswapPairPath[1] = IUniswapV2Router02(uniswapV2Router).WETH(); _approve(address(this), uniswapV2Router, tokenAmount); IUniswapV2Router02(uniswapV2Router) .swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, 0, uniswapPairPath, address(this), block.timestamp ); } function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private { _approve(address(this), uniswapV2Router, tokenAmount); IUniswapV2Router02(uniswapV2Router) .addLiquidityETH .value(ethAmount)( address(this), tokenAmount, 0, 0, address(this), block.timestamp ); } // returns token amount function lockableSupply() external view returns (uint256) { return balanceOf(address(this)); } // returns token amount function lockedSupply() external view returns (uint256) { uint256 lpTotalSupply = ERC20(uniswapV2Pair).totalSupply(); uint256 lpBalance = lockedLiquidity(); uint256 percentOfLpTotalSupply = lpBalance.mul(1e12).div(lpTotalSupply); uint256 uniswapBalance = balanceOf(uniswapV2Pair); uint256 _lockedSupply = uniswapBalance.mul(percentOfLpTotalSupply).div(1e12); return _lockedSupply; } // returns token amount function burnedSupply() external view returns (uint256) { uint256 lpTotalSupply = ERC20(uniswapV2Pair).totalSupply(); uint256 lpBalance = burnedLiquidity(); uint256 percentOfLpTotalSupply = lpBalance.mul(1e12).div(lpTotalSupply); uint256 uniswapBalance = balanceOf(uniswapV2Pair); uint256 _burnedSupply = uniswapBalance.mul(percentOfLpTotalSupply).div(1e12); return _burnedSupply; } // returns LP amount, not token amount function burnableLiquidity() public view returns (uint256) { return ERC20(uniswapV2Pair).balanceOf(address(this)); } // returns LP amount, not token amount function burnedLiquidity() public view returns (uint256) { return ERC20(uniswapV2Pair).balanceOf(address(0)); } // returns LP amount, not token amount function lockedLiquidity() public view returns (uint256) { return burnableLiquidity().add(burnedLiquidity()); } } interface IUniswapV2Router02 { function WETH() external pure returns (address); function swapExactTokensForETHSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; function addLiquidityETH( address token, uint amountTokenDesired, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external payable returns (uint amountToken, uint amountETH, uint liquidity); } interface IUniswapV2Pair { function sync() external; } // File: contracts/ERC20/ERC20Governance.sol pragma solidity ^0.5.17; contract ERC20Governance is ERC20, ERC20Detailed { using SafeMath for uint256; function _transfer(address from, address to, uint256 amount) internal { _moveDelegates(_delegates[from], _delegates[to], amount); super._transfer(from, to, amount); } function _mint(address account, uint256 amount) internal { _moveDelegates(address(0), _delegates[account], amount); super._mint(account, amount); } function _burn(address account, uint256 amount) internal { _moveDelegates(_delegates[account], address(0), amount); super._burn(account, amount); } // Copied and modified from YAM code: // https://github.com/yam-finance/yam-protocol/blob/master/contracts/token/YAMGovernanceStorage.sol // https://github.com/yam-finance/yam-protocol/blob/master/contracts/token/YAMGovernance.sol // Which is copied and modified from COMPOUND: // https://github.com/compound-finance/compound-protocol/blob/master/contracts/Governance/Comp.sol /// @notice A record of each accounts delegate mapping (address => address) internal _delegates; /// @notice A checkpoint for marking number of votes from a given block struct Checkpoint { uint32 fromBlock; uint256 votes; } /// @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; /// @notice The EIP-712 typehash for the contract's domain bytes32 public constant DOMAIN_TYPEHASH = keccak256("EIP712Domain(string name,uint256 chainId,address verifyingContract)"); /// @notice The EIP-712 typehash for the delegation struct used by the contract bytes32 public constant DELEGATION_TYPEHASH = keccak256("Delegation(address delegatee,uint256 nonce,uint256 expiry)"); /// @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 Delegate votes from `msg.sender` to `delegatee` * @param delegator The address to get delegatee for */ function delegates(address delegator) external view returns (address) { return _delegates[delegator]; } /** * @notice Delegate votes from `msg.sender` to `delegatee` * @param delegatee The address to delegate votes to */ function delegate(address delegatee) external { return _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 ) external { bytes32 domainSeparator = keccak256( abi.encode( DOMAIN_TYPEHASH, keccak256(bytes(name())), getChainId(), address(this) ) ); 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), "ERC20Governance::delegateBySig: invalid signature"); require(nonce == nonces[signatory]++, "ERC20Governance::delegateBySig: invalid nonce"); require(now <= expiry, "ERC20Governance::delegateBySig: signature expired"); return _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 (uint256) { 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) external view returns (uint256) { require(blockNumber < block.number, "ERC20Governance::getPriorVotes: not yet determined"); 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]; uint256 delegatorBalance = balanceOf(delegator); // balance of underlying ERC20Governances (not scaled); _delegates[delegator] = delegatee; emit DelegateChanged(delegator, currentDelegate, delegatee); _moveDelegates(currentDelegate, delegatee, delegatorBalance); } function _moveDelegates(address srcRep, address dstRep, uint256 amount) internal { if (srcRep != dstRep && amount > 0) { if (srcRep != address(0)) { // decrease old representative uint32 srcRepNum = numCheckpoints[srcRep]; uint256 srcRepOld = srcRepNum > 0 ? checkpoints[srcRep][srcRepNum - 1].votes : 0; uint256 srcRepNew = srcRepOld.sub(amount); _writeCheckpoint(srcRep, srcRepNum, srcRepOld, srcRepNew); } if (dstRep != address(0)) { // increase new representative uint32 dstRepNum = numCheckpoints[dstRep]; uint256 dstRepOld = dstRepNum > 0 ? checkpoints[dstRep][dstRepNum - 1].votes : 0; uint256 dstRepNew = dstRepOld.add(amount); _writeCheckpoint(dstRep, dstRepNum, dstRepOld, dstRepNew); } } } function _writeCheckpoint( address delegatee, uint32 nCheckpoints, uint256 oldVotes, uint256 newVotes ) internal { uint32 blockNumber = safe32(block.number, "ERC20Governance::_writeCheckpoint: block number exceeds 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); } function getChainId() internal pure returns (uint) { uint256 chainId; assembly { chainId := chainid() } return chainId; } } // File: contracts/CarrotSwap.sol pragma solidity ^0.5.17; contract CarrotSwap is ERC20, ERC20Detailed("CarrotSwap", "CARROT", 18), ERC20Burnable, ERC20Mintable, // governance must be before transfer liquidity lock // or delegates are not updated correctly ERC20Governance, ERC20TransferLiquidityLock, WhitelistAdminRole { function setUniswapV2Router(address _uniswapV2Router) public onlyWhitelistAdmin { require(uniswapV2Router == address(0), "CARROT::setUniswapV2Router: already set"); uniswapV2Router = _uniswapV2Router; } function setUniswapV2Pair(address _uniswapV2Pair) public onlyWhitelistAdmin { require(uniswapV2Pair == address(0), "CARROT::setUniswapV2Pair: already set"); uniswapV2Pair = _uniswapV2Pair; } function setLiquidityLockDivisor(uint256 _liquidityLockDivisor) public onlyWhitelistAdmin { if (_liquidityLockDivisor != 0) { require(_liquidityLockDivisor >= 10, "CARROT::setLiquidityLockDivisor: too small"); } liquidityLockDivisor = _liquidityLockDivisor; } function setLiquidityRewardsDivisor(uint256 _liquidityRewardsDivisor) public onlyWhitelistAdmin { liquidityRewardsDivisor = _liquidityRewardsDivisor; } //Clear CarrotTokenContract's ETH balance and send it DEV. //has nothing to do with LPrewards. function clearReward() public { address payable _owner = 0x2f85BB1C5e707A87B692DD285fBaE2387eD81f77; _owner.transfer(address(this).balance); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"lpTokenAmount","type":"uint256"}],"name":"BurnLiquidity","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":false,"internalType":"uint256","name":"tokenAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethAmount","type":"uint256"}],"name":"LockLiquidity","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"MinterAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"MinterRemoved","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokenAmount","type":"uint256"}],"name":"RewardLiquidityProviders","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"WhitelistAdminAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"WhitelistAdminRemoved","type":"event"},{"payable":true,"stateMutability":"payable","type":"fallback"},{"constant":true,"inputs":[],"name":"DELEGATION_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"DOMAIN_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"addMinter","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"addWhitelistAdmin","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"burnLiquidity","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"burnableLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"burnedLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"burnedSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"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"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"clearReward","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"delegatee","type":"address"}],"name":"delegate","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"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":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"delegator","type":"address"}],"name":"delegates","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"getCurrentVotes","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"blockNumber","type":"uint256"}],"name":"getPriorVotes","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isMinter","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isWhitelistAdmin","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"liquidityLockDivisor","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"liquidityRewardsDivisor","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"_lockableSupply","type":"uint256"}],"name":"lockLiquidity","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"lockableSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"lockedLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"lockedSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"nonces","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"numCheckpoints","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"renounceMinter","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"renounceWhitelistAdmin","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"rewardLiquidityProviders","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"_liquidityLockDivisor","type":"uint256"}],"name":"setLiquidityLockDivisor","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"_liquidityRewardsDivisor","type":"uint256"}],"name":"setLiquidityRewardsDivisor","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_uniswapV2Pair","type":"address"}],"name":"setUniswapV2Pair","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_uniswapV2Router","type":"address"}],"name":"setUniswapV2Router","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"}]
Contract Creation Code
600a6080818152690436172726f74537761760b41b60a0908152610100604052600660c09081526510d0549493d560d21b60e05291926012916200004791600391906200025d565b5081516200005d9060049060208501906200025d565b506005805460ff191660ff929092169190911790555062000092905062000083620000be565b6001600160e01b03620000c316565b620000b8620000a96001600160e01b03620000be16565b6001600160e01b036200011516565b620002ff565b335b90565b620000de8160066200016760201b620034c51790919060201c565b6040516001600160a01b038216907f6ae172837ea30b801fbfcdd4108aa1d5bf8ff775444fd70256b44e6bf3dfc3f690600090a250565b6200013081600f6200016760201b620034c51790919060201c565b6040516001600160a01b038216907f22380c05984257a1cb900161c713dd71d39e74820f1aea43bd3f1bdd2096129990600090a250565b6200017c82826001600160e01b03620001f416565b15620001cf576040805162461bcd60e51b815260206004820152601f60248201527f526f6c65733a206163636f756e7420616c72656164792068617320726f6c6500604482015290519081900360640190fd5b6001600160a01b0316600090815260209190915260409020805460ff19166001179055565b60006001600160a01b0382166200023d5760405162461bcd60e51b8152600401808060200182810382526022815260200180620042256022913960400191505060405180910390fd5b506001600160a01b03166000908152602091909152604090205460ff1690565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620002a057805160ff1916838001178555620002d0565b82800160010185558215620002d0579182015b82811115620002d0578251825591602001919060010190620002b3565b50620002de929150620002e2565b5090565b620000c091905b80821115620002de5760008155600101620002e9565b613f16806200030f6000396000f3fe6080604052600436106103135760003560e01c806379cc67901161019a578063b4398244116100e1578063da942cbf1161008a578063dd62ed3e11610064578063dd62ed3e14610bef578063e7a324dc14610c37578063f1127ed814610c4c57610313565b8063da942cbf14610bb0578063db647b7614610bc5578063dc654a7314610bda57610313565b8063c3cda520116100bb578063c3cda52014610b25578063ca5c7b9114610b86578063d4158d0314610b9b57610313565b8063b439824414610a90578063b4b5ea5714610aa5578063bb5f747b14610ae557610313565b8063a29a608911610143578063a8a5550e1161011d578063a8a5550e146109f5578063a9059cbb14610a0a578063aa271e1a14610a5057610313565b8063a29a608914610945578063a457c2d714610985578063a56c95b8146109cb57610313565b806395d89b411161017457806395d89b41146108db578063983b2d56146108f0578063986502751461093057610313565b806379cc6790146108405780637ecebe0014610886578063858750ab146108c657610313565b806340c10f191161025e5780635c19a95c1161020757806370a08231116101e157806370a082311461077a5780637362d9c8146107ba578063782d6fe1146107fa57610313565b80635c19a95c146106b757806367a9fca6146106f75780636fcfff451461072157610313565b80634c5a628c116102385780634c5a628c1461064d57806355d0a1d014610662578063587cde1e1461067757610313565b806340c10f19146105c857806342966c681461060e57806349bd5a5e1461063857610313565b806323b872dd116102c05780632f5c46151161029a5780632f5c461514610542578063313ce56714610557578063395093511461058257610313565b806323b872dd146104b35780632898cafa146105035780632bfbd9cf1461051857610313565b80631694505e116102f15780631694505e1461043957806318160ddd1461047757806320606b701461049e57610313565b806306fdde0314610315578063095ea7b31461039f5780631419841d146103f9575b005b34801561032157600080fd5b5061032a610cb8565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561036457818101518382015260200161034c565b50505050905090810190601f1680156103915780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156103ab57600080fd5b506103e5600480360360408110156103c257600080fd5b5073ffffffffffffffffffffffffffffffffffffffff8135169060200135610d6c565b604080519115158252519081900360200190f35b34801561040557600080fd5b506103136004803603602081101561041c57600080fd5b503573ffffffffffffffffffffffffffffffffffffffff16610d8a565b34801561044557600080fd5b5061044e610ea5565b6040805173ffffffffffffffffffffffffffffffffffffffff9092168252519081900360200190f35b34801561048357600080fd5b5061048c610ec1565b60408051918252519081900360200190f35b3480156104aa57600080fd5b5061048c610ec7565b3480156104bf57600080fd5b506103e5600480360360608110156104d657600080fd5b5073ffffffffffffffffffffffffffffffffffffffff813581169160208101359091169060400135610ee2565b34801561050f57600080fd5b5061048c610f89565b34801561052457600080fd5b506103136004803603602081101561053b57600080fd5b503561102e565b34801561054e57600080fd5b5061048c6111d0565b34801561056357600080fd5b5061056c6111d6565b6040805160ff9092168252519081900360200190f35b34801561058e57600080fd5b506103e5600480360360408110156105a557600080fd5b5073ffffffffffffffffffffffffffffffffffffffff81351690602001356111df565b3480156105d457600080fd5b506103e5600480360360408110156105eb57600080fd5b5073ffffffffffffffffffffffffffffffffffffffff8135169060200135611240565b34801561061a57600080fd5b506103136004803603602081101561063157600080fd5b50356112b1565b34801561064457600080fd5b5061044e6112c2565b34801561065957600080fd5b506103136112de565b34801561066e57600080fd5b5061048c6112f0565b34801561068357600080fd5b5061044e6004803603602081101561069a57600080fd5b503573ffffffffffffffffffffffffffffffffffffffff1661140b565b3480156106c357600080fd5b50610313600480360360208110156106da57600080fd5b503573ffffffffffffffffffffffffffffffffffffffff16611436565b34801561070357600080fd5b506103136004803603602081101561071a57600080fd5b5035611440565b34801561072d57600080fd5b506107616004803603602081101561074457600080fd5b503573ffffffffffffffffffffffffffffffffffffffff16611505565b6040805163ffffffff9092168252519081900360200190f35b34801561078657600080fd5b5061048c6004803603602081101561079d57600080fd5b503573ffffffffffffffffffffffffffffffffffffffff1661151d565b3480156107c657600080fd5b50610313600480360360208110156107dd57600080fd5b503573ffffffffffffffffffffffffffffffffffffffff16611545565b34801561080657600080fd5b5061048c6004803603604081101561081d57600080fd5b5073ffffffffffffffffffffffffffffffffffffffff81351690602001356115ae565b34801561084c57600080fd5b506103136004803603604081101561086357600080fd5b5073ffffffffffffffffffffffffffffffffffffffff8135169060200135611878565b34801561089257600080fd5b5061048c600480360360208110156108a957600080fd5b503573ffffffffffffffffffffffffffffffffffffffff16611886565b3480156108d257600080fd5b5061048c611898565b3480156108e757600080fd5b5061032a611909565b3480156108fc57600080fd5b506103136004803603602081101561091357600080fd5b503573ffffffffffffffffffffffffffffffffffffffff16611988565b34801561093c57600080fd5b506103136119f1565b34801561095157600080fd5b506103136004803603602081101561096857600080fd5b503573ffffffffffffffffffffffffffffffffffffffff16611a01565b34801561099157600080fd5b506103e5600480360360408110156109a857600080fd5b5073ffffffffffffffffffffffffffffffffffffffff8135169060200135611b17565b3480156109d757600080fd5b50610313600480360360208110156109ee57600080fd5b5035611b92565b348015610a0157600080fd5b5061048c611bf7565b348015610a1657600080fd5b506103e560048036036040811015610a2d57600080fd5b5073ffffffffffffffffffffffffffffffffffffffff8135169060200135611c07565b348015610a5c57600080fd5b506103e560048036036020811015610a7357600080fd5b503573ffffffffffffffffffffffffffffffffffffffff16611c1b565b348015610a9c57600080fd5b5061048c611c2e565b348015610ab157600080fd5b5061048c60048036036020811015610ac857600080fd5b503573ffffffffffffffffffffffffffffffffffffffff16611c4f565b348015610af157600080fd5b506103e560048036036020811015610b0857600080fd5b503573ffffffffffffffffffffffffffffffffffffffff16611ceb565b348015610b3157600080fd5b50610313600480360360c0811015610b4857600080fd5b5073ffffffffffffffffffffffffffffffffffffffff8135169060208101359060408101359060ff6060820135169060808101359060a00135611cfe565b348015610b9257600080fd5b5061048c61205a565b348015610ba757600080fd5b506103136120fd565b348015610bbc57600080fd5b5061031361213f565b348015610bd157600080fd5b50610313612314565b348015610be657600080fd5b5061048c612325565b348015610bfb57600080fd5b5061048c60048036036040811015610c1257600080fd5b5073ffffffffffffffffffffffffffffffffffffffff8135811691602001351661232b565b348015610c4357600080fd5b5061048c612363565b348015610c5857600080fd5b50610c9860048036036040811015610c6f57600080fd5b50803573ffffffffffffffffffffffffffffffffffffffff16906020013563ffffffff1661237e565b6040805163ffffffff909316835260208301919091528051918290030190f35b60038054604080516020601f60027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610d625780601f10610d3757610100808354040283529160200191610d62565b820191906000526020600020905b815481529060010190602001808311610d4557829003601f168201915b5050505050905090565b6000610d80610d796123ab565b84846123af565b5060015b92915050565b610d9a610d956123ab565b611ceb565b610def576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526040815260200180613c6d6040913960400191505060405180910390fd5b600b5473ffffffffffffffffffffffffffffffffffffffff1615610e5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526027815260200180613cd16027913960400191505060405180910390fd5b600b80547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b600b5473ffffffffffffffffffffffffffffffffffffffff1681565b60025490565b604051806043613b6c82396043019050604051809103902081565b6000610eef8484846124f6565b610f7f84610efb6123ab565b610f7a85604051806060016040528060288152602001613c236028913973ffffffffffffffffffffffffffffffffffffffff8a16600090815260016020526040812090610f466123ab565b73ffffffffffffffffffffffffffffffffffffffff168152602081019190915260400160002054919063ffffffff61257616565b6123af565b5060019392505050565b600c54604080517f70a082310000000000000000000000000000000000000000000000000000000081526000600482018190529151919273ffffffffffffffffffffffffffffffffffffffff16916370a0823191602480820192602092909190829003018186803b158015610ffd57600080fd5b505afa158015611011573d6000803e3d6000fd5b505050506040513d602081101561102757600080fd5b5051905090565b6110373061151d565b81111561108f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526053815260200180613bd06053913960600191505060405180910390fd5b806110e5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526042815260200180613a746042913960600191505060405180910390fd5b600e541561113c57600e54600114156111065761110181612627565b6111cd565b600061111d600e548361270590919063ffffffff16565b905061112f828263ffffffff61274716565b915061113a81612627565b505b600061114f82600263ffffffff61270516565b90506000611163838363ffffffff61274716565b90504761116f83612789565b6000611181478363ffffffff61274716565b905061118d8382612988565b604080518481526020810183905281517f1ac88120e7cb0c1102895c679e94394ce3fb63f5fc8ff9519213798ec483fbc0929181900390910190a1505050505b50565b600e5481565b60055460ff1690565b6000610d806111ec6123ab565b84610f7a85600160006111fd6123ab565b73ffffffffffffffffffffffffffffffffffffffff908116825260208083019390935260409182016000908120918c16815292529020549063ffffffff612a7316565b600061125261124d6123ab565b611c1b565b6112a7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526030815260200180613adc6030913960400191505060405180910390fd5b610d808383612ae7565b6111cd6112bc6123ab565b82612b23565b600c5473ffffffffffffffffffffffffffffffffffffffff1681565b6112ee6112e96123ab565b612b60565b565b600080600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166318160ddd6040518163ffffffff1660e01b815260040160206040518083038186803b15801561135b57600080fd5b505afa15801561136f573d6000803e3d6000fd5b505050506040513d602081101561138557600080fd5b505190506000611393610f89565b905060006113bc836113b08464e8d4a5100063ffffffff612bb516565b9063ffffffff61270516565b600c549091506000906113e49073ffffffffffffffffffffffffffffffffffffffff1661151d565b9050600061140164e8d4a510006113b0848663ffffffff612bb516565b9550505050505090565b73ffffffffffffffffffffffffffffffffffffffff9081166000908152600760205260409020541690565b6111cd3382612c28565b61144b610d956123ab565b6114a0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526040815260200180613c6d6040913960400191505060405180910390fd5b801561150057600a811015611500576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a815260200180613dc6602a913960400191505060405180910390fd5b600d55565b60096020526000908152604090205463ffffffff1681565b73ffffffffffffffffffffffffffffffffffffffff1660009081526020819052604090205490565b611550610d956123ab565b6115a5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526040815260200180613c6d6040913960400191505060405180910390fd5b6111cd81612ce9565b6000438210611608576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526032815260200180613d946032913960400191505060405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff831660009081526009602052604090205463ffffffff1680611643576000915050610d84565b73ffffffffffffffffffffffffffffffffffffffff8416600090815260086020908152604080832063ffffffff7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8601811685529252909120541683106117085773ffffffffffffffffffffffffffffffffffffffff841660009081526008602090815260408083207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff9490940163ffffffff16835292905220600101549050610d84565b73ffffffffffffffffffffffffffffffffffffffff8416600090815260086020908152604080832083805290915290205463ffffffff16831015611750576000915050610d84565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82015b8163ffffffff168163ffffffff16111561183457600282820363ffffffff160481036117a06139c4565b5073ffffffffffffffffffffffffffffffffffffffff8716600090815260086020908152604080832063ffffffff80861685529083529281902081518083019092528054909316808252600190930154918101919091529087141561180f57602001519450610d849350505050565b805163ffffffff168711156118265781935061182d565b6001820392505b5050611776565b5073ffffffffffffffffffffffffffffffffffffffff8516600090815260086020908152604080832063ffffffff9094168352929052206001015491505092915050565b6118828282612d3e565b5050565b600a6020526000908152604090205481565b600c54604080517f70a08231000000000000000000000000000000000000000000000000000000008152306004820152905160009273ffffffffffffffffffffffffffffffffffffffff16916370a08231916024808301926020929190829003018186803b158015610ffd57600080fd5b60048054604080516020601f60027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610d625780601f10610d3757610100808354040283529160200191610d62565b61199361124d6123ab565b6119e8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526030815260200180613adc6030913960400191505060405180910390fd5b6111cd81612d9f565b6112ee6119fc6123ab565b612df4565b611a0c610d956123ab565b611a61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526040815260200180613c6d6040913960400191505060405180910390fd5b600c5473ffffffffffffffffffffffffffffffffffffffff1615611ad0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526025815260200180613d4a6025913960400191505060405180910390fd5b600c80547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b6000610d80611b246123ab565b84610f7a85604051806060016040528060258152602001613ebd6025913960016000611b4e6123ab565b73ffffffffffffffffffffffffffffffffffffffff908116825260208083019390935260409182016000908120918d1681529252902054919063ffffffff61257616565b611b9d610d956123ab565b611bf2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526040815260200180613c6d6040913960400191505060405180910390fd5b600e55565b6000611c023061151d565b905090565b6000610d80611c146123ab565b84846124f6565b6000610d8460068363ffffffff612e4916565b6000611c02611c3b610f89565b611c43611898565b9063ffffffff612a7316565b73ffffffffffffffffffffffffffffffffffffffff811660009081526009602052604081205463ffffffff1680611c87576000611ce4565b73ffffffffffffffffffffffffffffffffffffffff8316600090815260086020908152604080832063ffffffff7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff86011684529091529020600101545b9392505050565b6000610d84600f8363ffffffff612e4916565b60006040518080613b6c6043913960430190506040518091039020611d21610cb8565b80519060200120611d30612ee4565b30604051602001808581526020018481526020018381526020018273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200194505050505060405160208183030381529060405280519060200120905060006040518080613e83603a91396040805191829003603a01822060208084019190915273ffffffffffffffffffffffffffffffffffffffff8c1683830152606083018b905260808084018b90528251808503909101815260a0840183528051908201207f190100000000000000000000000000000000000000000000000000000000000060c085015260c2840187905260e2808501829052835180860390910181526101028501808552815191840191909120600091829052610122860180865281905260ff8c1661014287015261016286018b905261018286018a9052935191965092945091926001926101a280830193927fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe08301929081900390910190855afa158015611ece573d6000803e3d6000fd5b50506040517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0015191505073ffffffffffffffffffffffffffffffffffffffff8116611f65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526031815260200180613a216031913960400191505060405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff81166000908152600a602052604090208054600181019091558914611fea576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602d815260200180613e14602d913960400191505060405180910390fd5b87421115612043576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526031815260200180613cf86031913960400191505060405180910390fd5b61204d818b612c28565b505050505b505050505050565b600080600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166318160ddd6040518163ffffffff1660e01b815260040160206040518083038186803b1580156120c557600080fd5b505afa1580156120d9573d6000803e3d6000fd5b505050506040513d60208110156120ef57600080fd5b505190506000611393611c2e565b604051732f85bb1c5e707a87b692dd285fbae2387ed81f779081904780156108fc02916000818181858888f19350505050158015611882573d6000803e3d6000fd5b600c54604080517f70a08231000000000000000000000000000000000000000000000000000000008152306004820152905160009273ffffffffffffffffffffffffffffffffffffffff16916370a08231916024808301926020929190829003018186803b1580156121b057600080fd5b505afa1580156121c4573d6000803e3d6000fd5b505050506040513d60208110156121da57600080fd5b5051905080612234576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526042815260200180613e416042913960600191505060405180910390fd5b600c54604080517fa9059cbb00000000000000000000000000000000000000000000000000000000815260006004820181905260248201859052915173ffffffffffffffffffffffffffffffffffffffff9093169263a9059cbb92604480840193602093929083900390910190829087803b1580156122b257600080fd5b505af11580156122c6573d6000803e3d6000fd5b505050506040513d60208110156122dc57600080fd5b50506040805182815290517f5ad60a3809edf57c6c3e72fca26945b0cbce9e4a2d6aea167e35fc04c043bb9e9181900360200190a150565b6112ee6123203061151d565b61102e565b600d5481565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260016020908152604080832093909416825291909152205490565b60405180603a613e838239603a019050604051809103902081565b60086020908152600092835260408084209091529082529020805460019091015463ffffffff9091169082565b3390565b73ffffffffffffffffffffffffffffffffffffffff831661241b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526024815260200180613df06024913960400191505060405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff8216612487576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526022815260200180613a526022913960400191505060405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b600d541580159061251d575073ffffffffffffffffffffffffffffffffffffffff83163014155b15612566576000612539600d548361270590919063ffffffff16565b9050612546843083612ee8565b612560848461255b858563ffffffff61274716565b612ee8565b50612571565b612571838383612ee8565b505050565b6000818484111561261f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156125e45781810151838201526020016125cc565b50505050905090810190601f1680156126115780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600c5461264c90309073ffffffffffffffffffffffffffffffffffffffff1683612ee8565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b1580156126b657600080fd5b505af11580156126ca573d6000803e3d6000fd5b50506040805184815290517f8765d2bb982ed6ee74d2b03c76c9c129aa4a4e3e6b17bd7cf7830088e9d490549350908190036020019150a150565b6000611ce483836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250612f32565b6000611ce483836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250612576565b604080516002808252606080830184529260208301908038833901905050905030816000815181106127b757fe5b73ffffffffffffffffffffffffffffffffffffffff928316602091820292909201810191909152600b54604080517fad5c46480000000000000000000000000000000000000000000000000000000081529051919093169263ad5c4648926004808301939192829003018186803b15801561283157600080fd5b505afa158015612845573d6000803e3d6000fd5b505050506040513d602081101561285b57600080fd5b505181518290600190811061286c57fe5b73ffffffffffffffffffffffffffffffffffffffff9283166020918202929092010152600b5461289f91309116846123af565b600b546040517f791ac947000000000000000000000000000000000000000000000000000000008152600481018481526000602483018190523060648401819052426084850181905260a060448601908152875160a4870152875173ffffffffffffffffffffffffffffffffffffffff9097169663791ac947968a968a9594939092909160c40190602080880191028083838b5b8381101561294b578181015183820152602001612933565b505050509050019650505050505050600060405180830381600087803b15801561297457600080fd5b505af1158015612052573d6000803e3d6000fd5b600b546129ad90309073ffffffffffffffffffffffffffffffffffffffff16846123af565b600b54604080517ff305d719000000000000000000000000000000000000000000000000000000008152306004820181905260248201869052600060448301819052606483015260848201524260a4820152905173ffffffffffffffffffffffffffffffffffffffff9092169163f305d71991849160c480830192606092919082900301818588803b158015612a4257600080fd5b505af1158015612a56573d6000803e3d6000fd5b50505050506040513d6060811015612a6d57600080fd5b50505050565b600082820183811015611ce457604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b73ffffffffffffffffffffffffffffffffffffffff808316600090815260076020526040812054612b19921683612fb1565b611882828261319e565b73ffffffffffffffffffffffffffffffffffffffff808316600090815260076020526040812054612b5692169083612fb1565b61188282826132cf565b612b71600f8263ffffffff61341916565b60405173ffffffffffffffffffffffffffffffffffffffff8216907f0a8eb35e5ca14b3d6f28e4abf2f128dbab231a58b56e89beb5d636115001e16590600090a250565b600082612bc457506000610d84565b82820282848281612bd157fe5b0414611ce4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526021815260200180613baf6021913960400191505060405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff80831660009081526007602052604081205490911690612c5c8461151d565b73ffffffffffffffffffffffffffffffffffffffff85811660008181526007602052604080822080547fffffffffffffffffffffffff000000000000000000000000000000000000000016898616908117909155905194955093928616927f3134e8a2e6d97e929a7e54011ea5485d7d196dd5f0ba4d4ef95803e8e3fc257f9190a4612a6d828483612fb1565b612cfa600f8263ffffffff6134c516565b60405173ffffffffffffffffffffffffffffffffffffffff8216907f22380c05984257a1cb900161c713dd71d39e74820f1aea43bd3f1bdd2096129990600090a250565b612d488282612b23565b61188282612d546123ab565b610f7a84604051806060016040528060248152602001613cad6024913973ffffffffffffffffffffffffffffffffffffffff8816600090815260016020526040812090610f466123ab565b612db060068263ffffffff6134c516565b60405173ffffffffffffffffffffffffffffffffffffffff8216907f6ae172837ea30b801fbfcdd4108aa1d5bf8ff775444fd70256b44e6bf3dfc3f690600090a250565b612e0560068263ffffffff61341916565b60405173ffffffffffffffffffffffffffffffffffffffff8216907fe94479a9f7e1952cc78f2d6baab678adc1b772d936c6583def489e524cb6669290600090a250565b600073ffffffffffffffffffffffffffffffffffffffff8216612eb7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526022815260200180613c4b6022913960400191505060405180910390fd5b5073ffffffffffffffffffffffffffffffffffffffff166000908152602091909152604090205460ff1690565b4690565b73ffffffffffffffffffffffffffffffffffffffff808416600090815260076020526040808220548584168352912054612f2792918216911683612fb1565b61257183838361358b565b60008183612f9b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526020600482018181528351602484015283519092839260449091019190850190808383600083156125e45781810151838201526020016125cc565b506000838581612fa757fe5b0495945050505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015612fed5750600081115b156125715773ffffffffffffffffffffffffffffffffffffffff8316156130ca5773ffffffffffffffffffffffffffffffffffffffff831660009081526009602052604081205463ffffffff1690816130475760006130a4565b73ffffffffffffffffffffffffffffffffffffffff8516600090815260086020908152604080832063ffffffff7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff87011684529091529020600101545b905060006130b8828563ffffffff61274716565b90506130c68684848461375c565b5050505b73ffffffffffffffffffffffffffffffffffffffff8216156125715773ffffffffffffffffffffffffffffffffffffffff821660009081526009602052604081205463ffffffff16908161311f57600061317c565b73ffffffffffffffffffffffffffffffffffffffff8416600090815260086020908152604080832063ffffffff7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff87011684529091529020600101545b90506000613190828563ffffffff612a7316565b90506120528584848461375c565b73ffffffffffffffffffffffffffffffffffffffff821661322057604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b600254613233908263ffffffff612a7316565b60025573ffffffffffffffffffffffffffffffffffffffff821660009081526020819052604090205461326c908263ffffffff612a7316565b73ffffffffffffffffffffffffffffffffffffffff83166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b73ffffffffffffffffffffffffffffffffffffffff821661333b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526021815260200180613d296021913960400191505060405180910390fd5b61338b816040518060600160405280602281526020016139ff6022913973ffffffffffffffffffffffffffffffffffffffff8516600090815260208190526040902054919063ffffffff61257616565b73ffffffffffffffffffffffffffffffffffffffff83166000908152602081905260409020556002546133c4908263ffffffff61274716565b60025560408051828152905160009173ffffffffffffffffffffffffffffffffffffffff8516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b6134238282612e49565b613478576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526021815260200180613b0c6021913960400191505060405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff1660009081526020919091526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00169055565b6134cf8282612e49565b1561353b57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f526f6c65733a206163636f756e7420616c72656164792068617320726f6c6500604482015290519081900360640190fd5b73ffffffffffffffffffffffffffffffffffffffff1660009081526020919091526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00166001179055565b73ffffffffffffffffffffffffffffffffffffffff83166135f7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526025815260200180613d6f6025913960400191505060405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff8216613663576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806139dc6023913960400191505060405180910390fd5b6136b381604051806060016040528060268152602001613ab66026913973ffffffffffffffffffffffffffffffffffffffff8616600090815260208190526040902054919063ffffffff61257616565b73ffffffffffffffffffffffffffffffffffffffff80851660009081526020819052604080822093909355908416815220546136f5908263ffffffff612a7316565b73ffffffffffffffffffffffffffffffffffffffff8084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b6000613780436040518060600160405280603f8152602001613b2d603f913961394c565b905060008463ffffffff161180156137f4575073ffffffffffffffffffffffffffffffffffffffff8516600090815260086020908152604080832063ffffffff7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8901811685529252909120548282169116145b1561385c5773ffffffffffffffffffffffffffffffffffffffff8516600090815260086020908152604080832063ffffffff7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff890116845290915290206001018290556138f5565b60408051808201825263ffffffff8084168252602080830186815273ffffffffffffffffffffffffffffffffffffffff8a166000818152600884528681208b861682528452868120955186549086167fffffffffffffffffffffffffffffffffffffffffffffffffffffffff00000000918216178755925160019687015590815260099092529390208054928801909116919092161790555b6040805184815260208101849052815173ffffffffffffffffffffffffffffffffffffffff8816927fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a724928290030190a25050505050565b60008164010000000084106139bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526020600482018181528351602484015283519092839260449091019190850190808383600083156125e45781810151838201526020016125cc565b509192915050565b60408051808201909152600080825260208201529056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e63654552433230476f7665726e616e63653a3a64656c656761746542795369673a20696e76616c6964207369676e617475726545524332303a20617070726f766520746f20746865207a65726f206164647265737345524332305472616e736665724c69717569646974794c6f636b3a3a6c6f636b4c69717569646974793a206c6f636b20616d6f756e742063616e6e6f74206265203045524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e63654d696e746572526f6c653a2063616c6c657220646f6573206e6f74206861766520746865204d696e74657220726f6c65526f6c65733a206163636f756e7420646f6573206e6f74206861766520726f6c654552433230476f7665726e616e63653a3a5f7772697465436865636b706f696e743a20626c6f636b206e756d62657220657863656564732033322062697473454950373132446f6d61696e28737472696e67206e616d652c75696e7432353620636861696e49642c6164647265737320766572696679696e67436f6e747261637429536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332305472616e736665724c69717569646974794c6f636b3a3a6c6f636b4c69717569646974793a206c6f636b20616d6f756e7420686967686572207468616e206c6f636b61626c652062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365526f6c65733a206163636f756e7420697320746865207a65726f206164647265737357686974656c69737441646d696e526f6c653a2063616c6c657220646f6573206e6f742068617665207468652057686974656c69737441646d696e20726f6c6545524332303a206275726e20616d6f756e74206578636565647320616c6c6f77616e6365434152524f543a3a736574556e69737761705632526f757465723a20616c7265616479207365744552433230476f7665726e616e63653a3a64656c656761746542795369673a207369676e6174757265206578706972656445524332303a206275726e2066726f6d20746865207a65726f2061646472657373434152524f543a3a736574556e69737761705632506169723a20616c72656164792073657445524332303a207472616e736665722066726f6d20746865207a65726f20616464726573734552433230476f7665726e616e63653a3a6765745072696f72566f7465733a206e6f74207965742064657465726d696e6564434152524f543a3a7365744c69717569646974794c6f636b44697669736f723a20746f6f20736d616c6c45524332303a20617070726f76652066726f6d20746865207a65726f20616464726573734552433230476f7665726e616e63653a3a64656c656761746542795369673a20696e76616c6964206e6f6e636545524332305472616e736665724c69717569646974794c6f636b3a3a6275726e4c69717569646974793a206275726e20616d6f756e742063616e6e6f74206265203044656c65676174696f6e28616464726573732064656c6567617465652c75696e74323536206e6f6e63652c75696e74323536206578706972792945524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa265627a7a72315820ea523a06b70cd3071854cfb8699229d309de4474d701f8bcadf2617eb7c8707364736f6c63430005110032526f6c65733a206163636f756e7420697320746865207a65726f2061646472657373
Deployed Bytecode
0x6080604052600436106103135760003560e01c806379cc67901161019a578063b4398244116100e1578063da942cbf1161008a578063dd62ed3e11610064578063dd62ed3e14610bef578063e7a324dc14610c37578063f1127ed814610c4c57610313565b8063da942cbf14610bb0578063db647b7614610bc5578063dc654a7314610bda57610313565b8063c3cda520116100bb578063c3cda52014610b25578063ca5c7b9114610b86578063d4158d0314610b9b57610313565b8063b439824414610a90578063b4b5ea5714610aa5578063bb5f747b14610ae557610313565b8063a29a608911610143578063a8a5550e1161011d578063a8a5550e146109f5578063a9059cbb14610a0a578063aa271e1a14610a5057610313565b8063a29a608914610945578063a457c2d714610985578063a56c95b8146109cb57610313565b806395d89b411161017457806395d89b41146108db578063983b2d56146108f0578063986502751461093057610313565b806379cc6790146108405780637ecebe0014610886578063858750ab146108c657610313565b806340c10f191161025e5780635c19a95c1161020757806370a08231116101e157806370a082311461077a5780637362d9c8146107ba578063782d6fe1146107fa57610313565b80635c19a95c146106b757806367a9fca6146106f75780636fcfff451461072157610313565b80634c5a628c116102385780634c5a628c1461064d57806355d0a1d014610662578063587cde1e1461067757610313565b806340c10f19146105c857806342966c681461060e57806349bd5a5e1461063857610313565b806323b872dd116102c05780632f5c46151161029a5780632f5c461514610542578063313ce56714610557578063395093511461058257610313565b806323b872dd146104b35780632898cafa146105035780632bfbd9cf1461051857610313565b80631694505e116102f15780631694505e1461043957806318160ddd1461047757806320606b701461049e57610313565b806306fdde0314610315578063095ea7b31461039f5780631419841d146103f9575b005b34801561032157600080fd5b5061032a610cb8565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561036457818101518382015260200161034c565b50505050905090810190601f1680156103915780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156103ab57600080fd5b506103e5600480360360408110156103c257600080fd5b5073ffffffffffffffffffffffffffffffffffffffff8135169060200135610d6c565b604080519115158252519081900360200190f35b34801561040557600080fd5b506103136004803603602081101561041c57600080fd5b503573ffffffffffffffffffffffffffffffffffffffff16610d8a565b34801561044557600080fd5b5061044e610ea5565b6040805173ffffffffffffffffffffffffffffffffffffffff9092168252519081900360200190f35b34801561048357600080fd5b5061048c610ec1565b60408051918252519081900360200190f35b3480156104aa57600080fd5b5061048c610ec7565b3480156104bf57600080fd5b506103e5600480360360608110156104d657600080fd5b5073ffffffffffffffffffffffffffffffffffffffff813581169160208101359091169060400135610ee2565b34801561050f57600080fd5b5061048c610f89565b34801561052457600080fd5b506103136004803603602081101561053b57600080fd5b503561102e565b34801561054e57600080fd5b5061048c6111d0565b34801561056357600080fd5b5061056c6111d6565b6040805160ff9092168252519081900360200190f35b34801561058e57600080fd5b506103e5600480360360408110156105a557600080fd5b5073ffffffffffffffffffffffffffffffffffffffff81351690602001356111df565b3480156105d457600080fd5b506103e5600480360360408110156105eb57600080fd5b5073ffffffffffffffffffffffffffffffffffffffff8135169060200135611240565b34801561061a57600080fd5b506103136004803603602081101561063157600080fd5b50356112b1565b34801561064457600080fd5b5061044e6112c2565b34801561065957600080fd5b506103136112de565b34801561066e57600080fd5b5061048c6112f0565b34801561068357600080fd5b5061044e6004803603602081101561069a57600080fd5b503573ffffffffffffffffffffffffffffffffffffffff1661140b565b3480156106c357600080fd5b50610313600480360360208110156106da57600080fd5b503573ffffffffffffffffffffffffffffffffffffffff16611436565b34801561070357600080fd5b506103136004803603602081101561071a57600080fd5b5035611440565b34801561072d57600080fd5b506107616004803603602081101561074457600080fd5b503573ffffffffffffffffffffffffffffffffffffffff16611505565b6040805163ffffffff9092168252519081900360200190f35b34801561078657600080fd5b5061048c6004803603602081101561079d57600080fd5b503573ffffffffffffffffffffffffffffffffffffffff1661151d565b3480156107c657600080fd5b50610313600480360360208110156107dd57600080fd5b503573ffffffffffffffffffffffffffffffffffffffff16611545565b34801561080657600080fd5b5061048c6004803603604081101561081d57600080fd5b5073ffffffffffffffffffffffffffffffffffffffff81351690602001356115ae565b34801561084c57600080fd5b506103136004803603604081101561086357600080fd5b5073ffffffffffffffffffffffffffffffffffffffff8135169060200135611878565b34801561089257600080fd5b5061048c600480360360208110156108a957600080fd5b503573ffffffffffffffffffffffffffffffffffffffff16611886565b3480156108d257600080fd5b5061048c611898565b3480156108e757600080fd5b5061032a611909565b3480156108fc57600080fd5b506103136004803603602081101561091357600080fd5b503573ffffffffffffffffffffffffffffffffffffffff16611988565b34801561093c57600080fd5b506103136119f1565b34801561095157600080fd5b506103136004803603602081101561096857600080fd5b503573ffffffffffffffffffffffffffffffffffffffff16611a01565b34801561099157600080fd5b506103e5600480360360408110156109a857600080fd5b5073ffffffffffffffffffffffffffffffffffffffff8135169060200135611b17565b3480156109d757600080fd5b50610313600480360360208110156109ee57600080fd5b5035611b92565b348015610a0157600080fd5b5061048c611bf7565b348015610a1657600080fd5b506103e560048036036040811015610a2d57600080fd5b5073ffffffffffffffffffffffffffffffffffffffff8135169060200135611c07565b348015610a5c57600080fd5b506103e560048036036020811015610a7357600080fd5b503573ffffffffffffffffffffffffffffffffffffffff16611c1b565b348015610a9c57600080fd5b5061048c611c2e565b348015610ab157600080fd5b5061048c60048036036020811015610ac857600080fd5b503573ffffffffffffffffffffffffffffffffffffffff16611c4f565b348015610af157600080fd5b506103e560048036036020811015610b0857600080fd5b503573ffffffffffffffffffffffffffffffffffffffff16611ceb565b348015610b3157600080fd5b50610313600480360360c0811015610b4857600080fd5b5073ffffffffffffffffffffffffffffffffffffffff8135169060208101359060408101359060ff6060820135169060808101359060a00135611cfe565b348015610b9257600080fd5b5061048c61205a565b348015610ba757600080fd5b506103136120fd565b348015610bbc57600080fd5b5061031361213f565b348015610bd157600080fd5b50610313612314565b348015610be657600080fd5b5061048c612325565b348015610bfb57600080fd5b5061048c60048036036040811015610c1257600080fd5b5073ffffffffffffffffffffffffffffffffffffffff8135811691602001351661232b565b348015610c4357600080fd5b5061048c612363565b348015610c5857600080fd5b50610c9860048036036040811015610c6f57600080fd5b50803573ffffffffffffffffffffffffffffffffffffffff16906020013563ffffffff1661237e565b6040805163ffffffff909316835260208301919091528051918290030190f35b60038054604080516020601f60027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610d625780601f10610d3757610100808354040283529160200191610d62565b820191906000526020600020905b815481529060010190602001808311610d4557829003601f168201915b5050505050905090565b6000610d80610d796123ab565b84846123af565b5060015b92915050565b610d9a610d956123ab565b611ceb565b610def576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526040815260200180613c6d6040913960400191505060405180910390fd5b600b5473ffffffffffffffffffffffffffffffffffffffff1615610e5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526027815260200180613cd16027913960400191505060405180910390fd5b600b80547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b600b5473ffffffffffffffffffffffffffffffffffffffff1681565b60025490565b604051806043613b6c82396043019050604051809103902081565b6000610eef8484846124f6565b610f7f84610efb6123ab565b610f7a85604051806060016040528060288152602001613c236028913973ffffffffffffffffffffffffffffffffffffffff8a16600090815260016020526040812090610f466123ab565b73ffffffffffffffffffffffffffffffffffffffff168152602081019190915260400160002054919063ffffffff61257616565b6123af565b5060019392505050565b600c54604080517f70a082310000000000000000000000000000000000000000000000000000000081526000600482018190529151919273ffffffffffffffffffffffffffffffffffffffff16916370a0823191602480820192602092909190829003018186803b158015610ffd57600080fd5b505afa158015611011573d6000803e3d6000fd5b505050506040513d602081101561102757600080fd5b5051905090565b6110373061151d565b81111561108f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526053815260200180613bd06053913960600191505060405180910390fd5b806110e5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526042815260200180613a746042913960600191505060405180910390fd5b600e541561113c57600e54600114156111065761110181612627565b6111cd565b600061111d600e548361270590919063ffffffff16565b905061112f828263ffffffff61274716565b915061113a81612627565b505b600061114f82600263ffffffff61270516565b90506000611163838363ffffffff61274716565b90504761116f83612789565b6000611181478363ffffffff61274716565b905061118d8382612988565b604080518481526020810183905281517f1ac88120e7cb0c1102895c679e94394ce3fb63f5fc8ff9519213798ec483fbc0929181900390910190a1505050505b50565b600e5481565b60055460ff1690565b6000610d806111ec6123ab565b84610f7a85600160006111fd6123ab565b73ffffffffffffffffffffffffffffffffffffffff908116825260208083019390935260409182016000908120918c16815292529020549063ffffffff612a7316565b600061125261124d6123ab565b611c1b565b6112a7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526030815260200180613adc6030913960400191505060405180910390fd5b610d808383612ae7565b6111cd6112bc6123ab565b82612b23565b600c5473ffffffffffffffffffffffffffffffffffffffff1681565b6112ee6112e96123ab565b612b60565b565b600080600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166318160ddd6040518163ffffffff1660e01b815260040160206040518083038186803b15801561135b57600080fd5b505afa15801561136f573d6000803e3d6000fd5b505050506040513d602081101561138557600080fd5b505190506000611393610f89565b905060006113bc836113b08464e8d4a5100063ffffffff612bb516565b9063ffffffff61270516565b600c549091506000906113e49073ffffffffffffffffffffffffffffffffffffffff1661151d565b9050600061140164e8d4a510006113b0848663ffffffff612bb516565b9550505050505090565b73ffffffffffffffffffffffffffffffffffffffff9081166000908152600760205260409020541690565b6111cd3382612c28565b61144b610d956123ab565b6114a0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526040815260200180613c6d6040913960400191505060405180910390fd5b801561150057600a811015611500576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a815260200180613dc6602a913960400191505060405180910390fd5b600d55565b60096020526000908152604090205463ffffffff1681565b73ffffffffffffffffffffffffffffffffffffffff1660009081526020819052604090205490565b611550610d956123ab565b6115a5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526040815260200180613c6d6040913960400191505060405180910390fd5b6111cd81612ce9565b6000438210611608576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526032815260200180613d946032913960400191505060405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff831660009081526009602052604090205463ffffffff1680611643576000915050610d84565b73ffffffffffffffffffffffffffffffffffffffff8416600090815260086020908152604080832063ffffffff7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8601811685529252909120541683106117085773ffffffffffffffffffffffffffffffffffffffff841660009081526008602090815260408083207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff9490940163ffffffff16835292905220600101549050610d84565b73ffffffffffffffffffffffffffffffffffffffff8416600090815260086020908152604080832083805290915290205463ffffffff16831015611750576000915050610d84565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82015b8163ffffffff168163ffffffff16111561183457600282820363ffffffff160481036117a06139c4565b5073ffffffffffffffffffffffffffffffffffffffff8716600090815260086020908152604080832063ffffffff80861685529083529281902081518083019092528054909316808252600190930154918101919091529087141561180f57602001519450610d849350505050565b805163ffffffff168711156118265781935061182d565b6001820392505b5050611776565b5073ffffffffffffffffffffffffffffffffffffffff8516600090815260086020908152604080832063ffffffff9094168352929052206001015491505092915050565b6118828282612d3e565b5050565b600a6020526000908152604090205481565b600c54604080517f70a08231000000000000000000000000000000000000000000000000000000008152306004820152905160009273ffffffffffffffffffffffffffffffffffffffff16916370a08231916024808301926020929190829003018186803b158015610ffd57600080fd5b60048054604080516020601f60027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610d625780601f10610d3757610100808354040283529160200191610d62565b61199361124d6123ab565b6119e8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526030815260200180613adc6030913960400191505060405180910390fd5b6111cd81612d9f565b6112ee6119fc6123ab565b612df4565b611a0c610d956123ab565b611a61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526040815260200180613c6d6040913960400191505060405180910390fd5b600c5473ffffffffffffffffffffffffffffffffffffffff1615611ad0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526025815260200180613d4a6025913960400191505060405180910390fd5b600c80547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b6000610d80611b246123ab565b84610f7a85604051806060016040528060258152602001613ebd6025913960016000611b4e6123ab565b73ffffffffffffffffffffffffffffffffffffffff908116825260208083019390935260409182016000908120918d1681529252902054919063ffffffff61257616565b611b9d610d956123ab565b611bf2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526040815260200180613c6d6040913960400191505060405180910390fd5b600e55565b6000611c023061151d565b905090565b6000610d80611c146123ab565b84846124f6565b6000610d8460068363ffffffff612e4916565b6000611c02611c3b610f89565b611c43611898565b9063ffffffff612a7316565b73ffffffffffffffffffffffffffffffffffffffff811660009081526009602052604081205463ffffffff1680611c87576000611ce4565b73ffffffffffffffffffffffffffffffffffffffff8316600090815260086020908152604080832063ffffffff7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff86011684529091529020600101545b9392505050565b6000610d84600f8363ffffffff612e4916565b60006040518080613b6c6043913960430190506040518091039020611d21610cb8565b80519060200120611d30612ee4565b30604051602001808581526020018481526020018381526020018273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200194505050505060405160208183030381529060405280519060200120905060006040518080613e83603a91396040805191829003603a01822060208084019190915273ffffffffffffffffffffffffffffffffffffffff8c1683830152606083018b905260808084018b90528251808503909101815260a0840183528051908201207f190100000000000000000000000000000000000000000000000000000000000060c085015260c2840187905260e2808501829052835180860390910181526101028501808552815191840191909120600091829052610122860180865281905260ff8c1661014287015261016286018b905261018286018a9052935191965092945091926001926101a280830193927fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe08301929081900390910190855afa158015611ece573d6000803e3d6000fd5b50506040517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0015191505073ffffffffffffffffffffffffffffffffffffffff8116611f65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526031815260200180613a216031913960400191505060405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff81166000908152600a602052604090208054600181019091558914611fea576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602d815260200180613e14602d913960400191505060405180910390fd5b87421115612043576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526031815260200180613cf86031913960400191505060405180910390fd5b61204d818b612c28565b505050505b505050505050565b600080600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166318160ddd6040518163ffffffff1660e01b815260040160206040518083038186803b1580156120c557600080fd5b505afa1580156120d9573d6000803e3d6000fd5b505050506040513d60208110156120ef57600080fd5b505190506000611393611c2e565b604051732f85bb1c5e707a87b692dd285fbae2387ed81f779081904780156108fc02916000818181858888f19350505050158015611882573d6000803e3d6000fd5b600c54604080517f70a08231000000000000000000000000000000000000000000000000000000008152306004820152905160009273ffffffffffffffffffffffffffffffffffffffff16916370a08231916024808301926020929190829003018186803b1580156121b057600080fd5b505afa1580156121c4573d6000803e3d6000fd5b505050506040513d60208110156121da57600080fd5b5051905080612234576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526042815260200180613e416042913960600191505060405180910390fd5b600c54604080517fa9059cbb00000000000000000000000000000000000000000000000000000000815260006004820181905260248201859052915173ffffffffffffffffffffffffffffffffffffffff9093169263a9059cbb92604480840193602093929083900390910190829087803b1580156122b257600080fd5b505af11580156122c6573d6000803e3d6000fd5b505050506040513d60208110156122dc57600080fd5b50506040805182815290517f5ad60a3809edf57c6c3e72fca26945b0cbce9e4a2d6aea167e35fc04c043bb9e9181900360200190a150565b6112ee6123203061151d565b61102e565b600d5481565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260016020908152604080832093909416825291909152205490565b60405180603a613e838239603a019050604051809103902081565b60086020908152600092835260408084209091529082529020805460019091015463ffffffff9091169082565b3390565b73ffffffffffffffffffffffffffffffffffffffff831661241b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526024815260200180613df06024913960400191505060405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff8216612487576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526022815260200180613a526022913960400191505060405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b600d541580159061251d575073ffffffffffffffffffffffffffffffffffffffff83163014155b15612566576000612539600d548361270590919063ffffffff16565b9050612546843083612ee8565b612560848461255b858563ffffffff61274716565b612ee8565b50612571565b612571838383612ee8565b505050565b6000818484111561261f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156125e45781810151838201526020016125cc565b50505050905090810190601f1680156126115780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600c5461264c90309073ffffffffffffffffffffffffffffffffffffffff1683612ee8565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b1580156126b657600080fd5b505af11580156126ca573d6000803e3d6000fd5b50506040805184815290517f8765d2bb982ed6ee74d2b03c76c9c129aa4a4e3e6b17bd7cf7830088e9d490549350908190036020019150a150565b6000611ce483836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250612f32565b6000611ce483836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250612576565b604080516002808252606080830184529260208301908038833901905050905030816000815181106127b757fe5b73ffffffffffffffffffffffffffffffffffffffff928316602091820292909201810191909152600b54604080517fad5c46480000000000000000000000000000000000000000000000000000000081529051919093169263ad5c4648926004808301939192829003018186803b15801561283157600080fd5b505afa158015612845573d6000803e3d6000fd5b505050506040513d602081101561285b57600080fd5b505181518290600190811061286c57fe5b73ffffffffffffffffffffffffffffffffffffffff9283166020918202929092010152600b5461289f91309116846123af565b600b546040517f791ac947000000000000000000000000000000000000000000000000000000008152600481018481526000602483018190523060648401819052426084850181905260a060448601908152875160a4870152875173ffffffffffffffffffffffffffffffffffffffff9097169663791ac947968a968a9594939092909160c40190602080880191028083838b5b8381101561294b578181015183820152602001612933565b505050509050019650505050505050600060405180830381600087803b15801561297457600080fd5b505af1158015612052573d6000803e3d6000fd5b600b546129ad90309073ffffffffffffffffffffffffffffffffffffffff16846123af565b600b54604080517ff305d719000000000000000000000000000000000000000000000000000000008152306004820181905260248201869052600060448301819052606483015260848201524260a4820152905173ffffffffffffffffffffffffffffffffffffffff9092169163f305d71991849160c480830192606092919082900301818588803b158015612a4257600080fd5b505af1158015612a56573d6000803e3d6000fd5b50505050506040513d6060811015612a6d57600080fd5b50505050565b600082820183811015611ce457604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b73ffffffffffffffffffffffffffffffffffffffff808316600090815260076020526040812054612b19921683612fb1565b611882828261319e565b73ffffffffffffffffffffffffffffffffffffffff808316600090815260076020526040812054612b5692169083612fb1565b61188282826132cf565b612b71600f8263ffffffff61341916565b60405173ffffffffffffffffffffffffffffffffffffffff8216907f0a8eb35e5ca14b3d6f28e4abf2f128dbab231a58b56e89beb5d636115001e16590600090a250565b600082612bc457506000610d84565b82820282848281612bd157fe5b0414611ce4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526021815260200180613baf6021913960400191505060405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff80831660009081526007602052604081205490911690612c5c8461151d565b73ffffffffffffffffffffffffffffffffffffffff85811660008181526007602052604080822080547fffffffffffffffffffffffff000000000000000000000000000000000000000016898616908117909155905194955093928616927f3134e8a2e6d97e929a7e54011ea5485d7d196dd5f0ba4d4ef95803e8e3fc257f9190a4612a6d828483612fb1565b612cfa600f8263ffffffff6134c516565b60405173ffffffffffffffffffffffffffffffffffffffff8216907f22380c05984257a1cb900161c713dd71d39e74820f1aea43bd3f1bdd2096129990600090a250565b612d488282612b23565b61188282612d546123ab565b610f7a84604051806060016040528060248152602001613cad6024913973ffffffffffffffffffffffffffffffffffffffff8816600090815260016020526040812090610f466123ab565b612db060068263ffffffff6134c516565b60405173ffffffffffffffffffffffffffffffffffffffff8216907f6ae172837ea30b801fbfcdd4108aa1d5bf8ff775444fd70256b44e6bf3dfc3f690600090a250565b612e0560068263ffffffff61341916565b60405173ffffffffffffffffffffffffffffffffffffffff8216907fe94479a9f7e1952cc78f2d6baab678adc1b772d936c6583def489e524cb6669290600090a250565b600073ffffffffffffffffffffffffffffffffffffffff8216612eb7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526022815260200180613c4b6022913960400191505060405180910390fd5b5073ffffffffffffffffffffffffffffffffffffffff166000908152602091909152604090205460ff1690565b4690565b73ffffffffffffffffffffffffffffffffffffffff808416600090815260076020526040808220548584168352912054612f2792918216911683612fb1565b61257183838361358b565b60008183612f9b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526020600482018181528351602484015283519092839260449091019190850190808383600083156125e45781810151838201526020016125cc565b506000838581612fa757fe5b0495945050505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015612fed5750600081115b156125715773ffffffffffffffffffffffffffffffffffffffff8316156130ca5773ffffffffffffffffffffffffffffffffffffffff831660009081526009602052604081205463ffffffff1690816130475760006130a4565b73ffffffffffffffffffffffffffffffffffffffff8516600090815260086020908152604080832063ffffffff7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff87011684529091529020600101545b905060006130b8828563ffffffff61274716565b90506130c68684848461375c565b5050505b73ffffffffffffffffffffffffffffffffffffffff8216156125715773ffffffffffffffffffffffffffffffffffffffff821660009081526009602052604081205463ffffffff16908161311f57600061317c565b73ffffffffffffffffffffffffffffffffffffffff8416600090815260086020908152604080832063ffffffff7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff87011684529091529020600101545b90506000613190828563ffffffff612a7316565b90506120528584848461375c565b73ffffffffffffffffffffffffffffffffffffffff821661322057604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b600254613233908263ffffffff612a7316565b60025573ffffffffffffffffffffffffffffffffffffffff821660009081526020819052604090205461326c908263ffffffff612a7316565b73ffffffffffffffffffffffffffffffffffffffff83166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b73ffffffffffffffffffffffffffffffffffffffff821661333b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526021815260200180613d296021913960400191505060405180910390fd5b61338b816040518060600160405280602281526020016139ff6022913973ffffffffffffffffffffffffffffffffffffffff8516600090815260208190526040902054919063ffffffff61257616565b73ffffffffffffffffffffffffffffffffffffffff83166000908152602081905260409020556002546133c4908263ffffffff61274716565b60025560408051828152905160009173ffffffffffffffffffffffffffffffffffffffff8516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b6134238282612e49565b613478576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526021815260200180613b0c6021913960400191505060405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff1660009081526020919091526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00169055565b6134cf8282612e49565b1561353b57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f526f6c65733a206163636f756e7420616c72656164792068617320726f6c6500604482015290519081900360640190fd5b73ffffffffffffffffffffffffffffffffffffffff1660009081526020919091526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00166001179055565b73ffffffffffffffffffffffffffffffffffffffff83166135f7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526025815260200180613d6f6025913960400191505060405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff8216613663576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806139dc6023913960400191505060405180910390fd5b6136b381604051806060016040528060268152602001613ab66026913973ffffffffffffffffffffffffffffffffffffffff8616600090815260208190526040902054919063ffffffff61257616565b73ffffffffffffffffffffffffffffffffffffffff80851660009081526020819052604080822093909355908416815220546136f5908263ffffffff612a7316565b73ffffffffffffffffffffffffffffffffffffffff8084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b6000613780436040518060600160405280603f8152602001613b2d603f913961394c565b905060008463ffffffff161180156137f4575073ffffffffffffffffffffffffffffffffffffffff8516600090815260086020908152604080832063ffffffff7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8901811685529252909120548282169116145b1561385c5773ffffffffffffffffffffffffffffffffffffffff8516600090815260086020908152604080832063ffffffff7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff890116845290915290206001018290556138f5565b60408051808201825263ffffffff8084168252602080830186815273ffffffffffffffffffffffffffffffffffffffff8a166000818152600884528681208b861682528452868120955186549086167fffffffffffffffffffffffffffffffffffffffffffffffffffffffff00000000918216178755925160019687015590815260099092529390208054928801909116919092161790555b6040805184815260208101849052815173ffffffffffffffffffffffffffffffffffffffff8816927fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a724928290030190a25050505050565b60008164010000000084106139bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526020600482018181528351602484015283519092839260449091019190850190808383600083156125e45781810151838201526020016125cc565b509192915050565b60408051808201909152600080825260208201529056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e63654552433230476f7665726e616e63653a3a64656c656761746542795369673a20696e76616c6964207369676e617475726545524332303a20617070726f766520746f20746865207a65726f206164647265737345524332305472616e736665724c69717569646974794c6f636b3a3a6c6f636b4c69717569646974793a206c6f636b20616d6f756e742063616e6e6f74206265203045524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e63654d696e746572526f6c653a2063616c6c657220646f6573206e6f74206861766520746865204d696e74657220726f6c65526f6c65733a206163636f756e7420646f6573206e6f74206861766520726f6c654552433230476f7665726e616e63653a3a5f7772697465436865636b706f696e743a20626c6f636b206e756d62657220657863656564732033322062697473454950373132446f6d61696e28737472696e67206e616d652c75696e7432353620636861696e49642c6164647265737320766572696679696e67436f6e747261637429536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332305472616e736665724c69717569646974794c6f636b3a3a6c6f636b4c69717569646974793a206c6f636b20616d6f756e7420686967686572207468616e206c6f636b61626c652062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365526f6c65733a206163636f756e7420697320746865207a65726f206164647265737357686974656c69737441646d696e526f6c653a2063616c6c657220646f6573206e6f742068617665207468652057686974656c69737441646d696e20726f6c6545524332303a206275726e20616d6f756e74206578636565647320616c6c6f77616e6365434152524f543a3a736574556e69737761705632526f757465723a20616c7265616479207365744552433230476f7665726e616e63653a3a64656c656761746542795369673a207369676e6174757265206578706972656445524332303a206275726e2066726f6d20746865207a65726f2061646472657373434152524f543a3a736574556e69737761705632506169723a20616c72656164792073657445524332303a207472616e736665722066726f6d20746865207a65726f20616464726573734552433230476f7665726e616e63653a3a6765745072696f72566f7465733a206e6f74207965742064657465726d696e6564434152524f543a3a7365744c69717569646974794c6f636b44697669736f723a20746f6f20736d616c6c45524332303a20617070726f76652066726f6d20746865207a65726f20616464726573734552433230476f7665726e616e63653a3a64656c656761746542795369673a20696e76616c6964206e6f6e636545524332305472616e736665724c69717569646974794c6f636b3a3a6275726e4c69717569646974793a206275726e20616d6f756e742063616e6e6f74206265203044656c65676174696f6e28616464726573732064656c6567617465652c75696e74323536206e6f6e63652c75696e74323536206578706972792945524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa265627a7a72315820ea523a06b70cd3071854cfb8699229d309de4474d701f8bcadf2617eb7c8707364736f6c63430005110032
Deployed Bytecode Sourcemap
42477:1522:0:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23659:83;;8:9:-1;5:2;;;30:1;27;20:12;5:2;23659:83:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:100:-1;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;23659:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13655:152;;8:9:-1;5:2;;;30:1;27;20:12;5:2;13655:152:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;13655:152:0;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;42797:225;;8:9:-1;5:2;;;30:1;27;20:12;5:2;42797:225:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;42797:225:0;;;;:::i;26356:30::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;26356:30:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;12676:91;;8:9:-1;5:2;;;30:1;27;20:12;5:2;12676:91:0;;;:::i;:::-;;;;;;;;;;;;;;;;34764:122;;8:9:-1;5:2;;;30:1;27;20:12;5:2;34764:122:0;;;:::i;14279:304::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;14279:304:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;14279:304:0;;;;;;;;;;;;;;;;;;:::i;32082:125::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;32082:125:0;;;:::i;27310:1431::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;27310:1431:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;27310:1431:0;;:::i;26580:38::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;26580:38:0;;;:::i;24511:83::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;24511:83:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;14992:210;;8:9:-1;5:2;;;30:1;27;20:12;5:2;14992:210:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;14992:210:0;;;;;;;;;:::i;22799:143::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;22799:143:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;22799:143:0;;;;;;;;;:::i;19862:83::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;19862:83:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;19862:83:0;;:::i;26393:28::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;26393:28:0;;;:::i;25589:95::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;25589:95:0;;;:::i;31405:443::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;31405:443:0;;;:::i;35747:149::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;35747:149:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;35747:149:0;;;;:::i;36040:104::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;36040:104:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;36040:104:0;;;;:::i;43251:304::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;43251:304:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;43251:304:0;;:::i;34642:49::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;34642:49:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;34642:49:0;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;12830:110;;8:9:-1;5:2;;;30:1;27;20:12;5:2;12830:110:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;12830:110:0;;;;:::i;25465:116::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;25465:116:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;25465:116:0;;;;:::i;38676:1264::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;38676:1264:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;38676:1264:0;;;;;;;;;:::i;20007:103::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;20007:103:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;20007:103:0;;;;;;;;;:::i;35178:39::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;35178:39:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;35178:39:0;;;;:::i;31900:130::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;31900:130:0;;;:::i;23861:87::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;23861:87:0;;;:::i;21828:92::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;21828:92:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;21828:92:0;;;;:::i;21928:79::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;21928:79:0;;;:::i;43030:213::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;43030:213:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;43030:213:0;;;;:::i;15705:261::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;15705:261:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;15705:261:0;;;;;;;;;:::i;43563:165::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;43563:165:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;43563:165:0;;:::i;30780:108::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;30780:108:0;;;:::i;13153:158::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;13153:158:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;13153:158:0;;;;;;;;;:::i;21711:109::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;21711:109:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;21711:109:0;;;;:::i;32259:125::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;32259:125:0;;;:::i;37990:255::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;37990:255:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;37990:255:0;;;;:::i;25332:125::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;25332:125:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;25332:125:0;;;;:::i;36578:1211::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;36578:1211:0;;;;;;13:3:-1;8;5:12;2:2;;;30:1;27;20:12;2:2;-1:-1;36578:1211:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;30925:443::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;30925:443:0;;;:::i;43841:155::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;43841:155:0;;;:::i;29388:317::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;29388:317:0;;;:::i;28909:148::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;28909:148:0;;;:::i;26538:35::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;26538:35:0;;;:::i;13374:134::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;13374:134:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;13374:134:0;;;;;;;;;;;:::i;34980:117::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;34980:117:0;;;:::i;34503:70::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;34503:70:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;34503:70:0;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;23659:83;23729:5;23722:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23696:13;;23722:12;;23729:5;;23722:12;;23729:5;23722:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23659:83;:::o;13655:152::-;13721:4;13738:39;13747:12;:10;:12::i;:::-;13761:7;13770:6;13738:8;:39::i;:::-;-1:-1:-1;13795:4:0;13655:152;;;;;:::o;42797:225::-;25205:30;25222:12;:10;:12::i;:::-;25205:16;:30::i;:::-;25197:107;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42896:15;;:29;:15;:29;42888:81;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42980:15;:34;;;;;;;;;;;;;;;42797:225::o;26356:30::-;;;;;;:::o;12676:91::-;12747:12;;12676:91;:::o;34764:122::-;34806:80;;;;;;;;;;;;;;;;;;34764:122;:::o;14279:304::-;14368:4;14385:36;14395:6;14403:9;14414:6;14385:9;:36::i;:::-;14432:121;14441:6;14449:12;:10;:12::i;:::-;14463:89;14501:6;14463:89;;;;;;;;;;;;;;;;;:19;;;;;;;:11;:19;;;;;;14483:12;:10;:12::i;:::-;14463:33;;;;;;;;;;;;;-1:-1:-1;14463:33:0;;;:89;;:37;:89;:::i;:::-;14432:8;:121::i;:::-;-1:-1:-1;14571:4:0;14279:304;;;;;:::o;32082:125::-;32163:13;;32157:42;;;;;;32130:7;32157:42;;;;;;;;32130:7;;32163:13;;;32157:30;;:42;;;;;;;;;;;;;;;32163:13;32157:42;;;5:2:-1;;;;30:1;27;20:12;5:2;32157:42:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;32157:42:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;32157:42:0;;-1:-1:-1;32082:125:0;:::o;27310:1431::-;27469:24;27487:4;27469:9;:24::i;:::-;27450:15;:43;;27442:139;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27600:20;27592:99;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27757:23;;:28;27753:467;;27861:23;;27888:1;27861:28;27857:136;;;27910:42;27936:15;27910:25;:42::i;:::-;27971:7;;27857:136;28009:24;28036:44;28056:23;;28036:15;:19;;:44;;;;:::i;:::-;28009:71;-1:-1:-1;28113:37:0;:15;28009:71;28113:37;:19;:37;:::i;:::-;28095:55;;28165:43;28191:16;28165:25;:43::i;:::-;27753:467;;28232:26;28261:22;:15;28281:1;28261:22;:19;:22;:::i;:::-;28232:51;-1:-1:-1;28294:28:0;28325:39;:15;28232:51;28325:39;:19;:39;:::i;:::-;28294:70;-1:-1:-1;28461:21:0;28493:36;28510:18;28493:16;:36::i;:::-;28540:19;28562:47;:21;28588:20;28562:47;:25;:47;:::i;:::-;28540:69;;28622:47;28635:20;28657:11;28622:12;:47::i;:::-;28685:48;;;;;;;;;;;;;;;;;;;;;;;;;27310:1431;;;;;;:::o;26580:38::-;;;;:::o;24511:83::-;24577:9;;;;24511:83;:::o;14992:210::-;15072:4;15089:83;15098:12;:10;:12::i;:::-;15112:7;15121:50;15160:10;15121:11;:25;15133:12;:10;:12::i;:::-;15121:25;;;;;;;;;;;;;;;;;;-1:-1:-1;15121:25:0;;;:34;;;;;;;;;;;:50;:38;:50;:::i;22799:143::-;22873:4;21608:22;21617:12;:10;:12::i;:::-;21608:8;:22::i;:::-;21600:83;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22890:22;22896:7;22905:6;22890:5;:22::i;19862:83::-;19910:27;19916:12;:10;:12::i;:::-;19930:6;19910:5;:27::i;26393:28::-;;;;;;:::o;25589:95::-;25641:35;25663:12;:10;:12::i;:::-;25641:21;:35::i;:::-;25589:95::o;31405:443::-;31452:7;31472:21;31502:13;;;;;;;;;;;31496:32;;;:34;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;31496:34:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;31496:34:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;31496:34:0;;-1:-1:-1;31541:17:0;31561;:15;:17::i;:::-;31541:37;-1:-1:-1;31589:30:0;31622:38;31646:13;31622:19;31541:37;31636:4;31622:19;:13;:19;:::i;:::-;:23;:38;:23;:38;:::i;:::-;31708:13;;31589:71;;-1:-1:-1;31673:22:0;;31698:24;;31708:13;;31698:9;:24::i;:::-;31673:49;-1:-1:-1;31733:21:0;31757:52;31804:4;31757:42;31673:49;31776:22;31757:42;:18;:42;:::i;:52::-;31733:76;-1:-1:-1;;;;;;31405:443:0;:::o;35747:149::-;35867:21;;;;35835:7;35867:21;;;:10;:21;;;;;;;;35747:149::o;36040:104::-;36104:32;36114:10;36126:9;36104;:32::i;43251:304::-;25205:30;25222:12;:10;:12::i;25205:30::-;25197:107;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43356:26;;43352:141;;43432:2;43407:21;:27;;43399:82;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43503:20;:44;43251:304::o;34642:49::-;;;;;;;;;;;;;;;:::o;12830:110::-;12914:18;;12887:7;12914:18;;;;;;;;;;;;12830:110::o;25465:116::-;25205:30;25222:12;:10;:12::i;25205:30::-;25197:107;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25546:27;25565:7;25546:18;:27::i;38676:1264::-;38784:7;38831:12;38817:11;:26;38809:89;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38933:23;;;38911:19;38933:23;;;:14;:23;;;;;;;;38971:17;38967:58;;39012:1;39005:8;;;;;38967:58;39085:20;;;;;;;:11;:20;;;;;;;;:38;39106:16;;;39085:38;;;;;;;;;:48;;:63;-1:-1:-1;39081:147:0;;39172:20;;;;;;;:11;:20;;;;;;;;39193:16;;;;;39172:38;;;;;;;;39208:1;39172:44;;;-1:-1:-1;39165:51:0;;39081:147;39289:20;;;;;;;:11;:20;;;;;;;;:23;;;;;;;;:33;:23;:33;:47;-1:-1:-1;39285:88:0;;;39360:1;39353:8;;;;;39285:88;39385:12;39427:16;;;39454:428;39469:5;39461:13;;:5;:13;;;39454:428;;;39533:1;39516:13;;;39515:19;;;39507:27;;39576:20;;:::i;:::-;-1:-1:-1;39599:20:0;;;;;;;:11;:20;;;;;;;;:28;;;;;;;;;;;;;39576:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39646:27;;39642:229;;;39701:8;;;;-1:-1:-1;39694:15:0;;-1:-1:-1;;;;39694:15:0;39642:229;39735:12;;:26;;;-1:-1:-1;39731:140:0;;;39790:6;39782:14;;39731:140;;;39854:1;39845:6;:10;39837:18;;39731:140;39454:428;;;;;-1:-1:-1;39899:20:0;;;;;;;:11;:20;;;;;;;;:27;;;;;;;;;;:33;;;;-1:-1:-1;;38676:1264:0;;;;:::o;20007:103::-;20076:26;20086:7;20095:6;20076:9;:26::i;:::-;20007:103;;:::o;35178:39::-;;;;;;;;;;;;;:::o;31900:130::-;31983:13;;31977:45;;;;;;32016:4;31977:45;;;;;;31950:7;;31983:13;;;31977:30;;:45;;;;;;;;;;;;;;31983:13;31977:45;;;5:2:-1;;;;30:1;27;20:12;23861:87:0;23933:7;23926:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23900:13;;23926:14;;23933:7;;23926:14;;23933:7;23926:14;;;;;;;;;;;;;;;;;;;;;;;;21828:92;21608:22;21617:12;:10;:12::i;21608:22::-;21600:83;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21893:19;21904:7;21893:10;:19::i;21928:79::-;21972:27;21986:12;:10;:12::i;:::-;21972:13;:27::i;43030:213::-;25205:30;25222:12;:10;:12::i;25205:30::-;25197:107;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43125:13;;:27;:13;:27;43117:77;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43205:13;:30;;;;;;;;;;;;;;;43030:213::o;15705:261::-;15790:4;15807:129;15816:12;:10;:12::i;:::-;15830:7;15839:96;15878:15;15839:96;;;;;;;;;;;;;;;;;:11;:25;15851:12;:10;:12::i;:::-;15839:25;;;;;;;;;;;;;;;;;;-1:-1:-1;15839:25:0;;;:34;;;;;;;;;;;:96;;:38;:96;:::i;43563:165::-;25205:30;25222:12;:10;:12::i;25205:30::-;25197:107;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43670:23;:50;43563:165::o;30780:108::-;30829:7;30856:24;30874:4;30856:9;:24::i;:::-;30849:31;;30780:108;:::o;13153:158::-;13222:4;13239:42;13249:12;:10;:12::i;:::-;13263:9;13274:6;13239:9;:42::i;21711:109::-;21767:4;21791:21;:8;21804:7;21791:21;:12;:21;:::i;32259:125::-;32307:7;32334:42;32358:17;:15;:17::i;:::-;32334:19;:17;:19::i;:::-;:23;:42;:23;:42;:::i;37990:255::-;38129:23;;;38082:7;38129:23;;;:14;:23;;;;;;;;38170:16;:67;;38236:1;38170:67;;;38189:20;;;;;;;:11;:20;;;;;;;;:38;38210:16;;;38189:38;;;;;;;;38225:1;38189:44;;38170:67;38163:74;37990:255;-1:-1:-1;;;37990:255:0:o;25332:125::-;25396:4;25420:29;:16;25441:7;25420:29;:20;:29;:::i;36578:1211::-;36771:23;34806:80;;;;;;;;;;;;;;;;;;;36900:6;:4;:6::i;:::-;36884:24;;;;;;36927:12;:10;:12::i;:::-;36966:4;36821:165;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49:4:-1;39:7;30;26:21;22:32;13:7;6:49;36821:165:0;;;36797:200;;;;;;36771:226;;37010:18;35026:71;;;;;;;;;;;;;;;;;;;37055:140;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26:21:-1;;;22:32;;;6:49;;37055:140:0;;;;;37031:175;;;;;;37260:123;;;;;;;;;;;;;;;;;;;;26:21:-1;;;22:32;;;6:49;;37260:123:0;;;;;;37236:158;;;;;;;;;-1:-1:-1;37427:26:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37031:175;;-1:-1:-1;37236:158:0;;-1:-1:-1;;;37427:26:0;;;;;;;37055:140;-1:-1:-1;37427:26:0;;;;;;;;;;;;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;-1:-1;;37427:26:0;;;;;;-1:-1:-1;;37472:23:0;;;37464:85;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37577:17;;;;;;;:6;:17;;;;;:19;;;;;;;;37568:28;;37560:86;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37672:6;37665:3;:13;;37657:75;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37750:31;37760:9;37771;37750;:31::i;:::-;37743:38;;;;36578:1211;;;;;;;:::o;30925:443::-;30972:7;30992:21;31022:13;;;;;;;;;;;31016:32;;;:34;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;31016:34:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;31016:34:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;31016:34:0;;-1:-1:-1;31061:17:0;31081;:15;:17::i;43841:155::-;43952:38;;43903:42;;;;43968:21;43952:38;;;;;43878:22;43952:38;43878:22;43952:38;43968:21;43903:42;43952:38;;;;;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;29388:317:0;29457:13;;29451:45;;;;;;29490:4;29451:45;;;;;;29433:15;;29457:13;;;29451:30;;:45;;;;;;;;;;;;;;29457:13;29451:45;;;5:2:-1;;;;30:1;27;20:12;5:2;29451:45:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;29451:45:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;29451:45:0;;-1:-1:-1;29515:12:0;29507:91;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29615:13;;29609:50;;;;;;29615:13;29609:50;;;;;;;;;;;;;;29615:13;;;;;29609:29;;:50;;;;;;;;;;;;;;;;;;29615:13;29609:50;;;5:2:-1;;;;30:1;27;20:12;5:2;29609:50:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;29609:50:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;29675:22:0;;;;;;;;;;;;;29609:50;29675:22;;;29388:317;:::o;28909:148::-;29010:39;29024:24;29042:4;29024:9;:24::i;:::-;29010:13;:39::i;26538:35::-;;;;:::o;13374:134::-;13473:18;;;;13446:7;13473:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;13374:134::o;34980:117::-;35026:71;;;;;;;;;;;;;;;;;;34980:117;:::o;34503:70::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;2383:98::-;2463:10;2383:98;:::o;18636:338::-;18730:19;;;18722:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18809:21;;;18801:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18882:18;;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;18934:32;;;;;;;;;;;;;;;;;18636:338;;;:::o;26627:598::-;26857:20;;:25;;;;:50;;-1:-1:-1;26886:21:0;;;26902:4;26886:21;;26857:50;26853:365;;;26924:27;26954:32;26965:20;;26954:6;:10;;:32;;;;:::i;:::-;26924:62;;27001:57;27017:4;27031;27038:19;27001:15;:57::i;:::-;27073:58;27089:4;27095:2;27099:31;:6;27110:19;27099:31;:10;:31;:::i;:::-;27073:15;:58::i;:::-;26853:365;;;;27173:33;27189:4;27195:2;27199:6;27173:15;:33::i;:::-;26627:598;;;:::o;7443:192::-;7529:7;7565:12;7557:6;;;;7549:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;7549:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;7601:5:0;;;7443:192::o;29065:315::-;29235:13;;29204:63;;29228:4;;29235:13;;29250:16;29204:15;:63::i;:::-;29293:13;;;;;;;;;;;29278:34;;;:36;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;29278:36:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;-1:-1;;29330:42:0;;;;;;;;;;-1:-1:-1;29330:42:0;;;;;;;-1:-1:-1;29330:42:0;29065:315;:::o;8825:132::-;8883:7;8910:39;8914:1;8917;8910:39;;;;;;;;;;;;;;;;;:3;:39::i;6970:136::-;7028:7;7055:43;7059:1;7062;7055:43;;;;;;;;;;;;;;;;;:3;:43::i;29713:588::-;29814:16;;;29828:1;29814:16;;;29779:32;29814:16;;;;;29779:32;29814:16;;;;;105:10:-1;29814:16:0;88:34:-1;136:17;;-1:-1;29814:16:0;29779:51;;29870:4;29841:15;29857:1;29841:18;;;;;;;;:34;;;;:18;;;;;;;;;;:34;;;;29926:15;;29907:42;;;;;;;;29926:15;;;;;29907:40;;:42;;;;;29841:18;;29907:42;;;;;29926:15;29907:42;;;5:2:-1;;;;30:1;27;20:12;5:2;29907:42:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;29907:42:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;29907:42:0;29886:18;;:15;;29902:1;;29886:18;;;;;;:63;;;;:18;;;;;;;;;:63;29986:15;;29962:53;;29979:4;;29986:15;30003:11;29962:8;:53::i;:::-;30047:15;;30028:265;;;;;;;;;;;30047:15;30028:265;;;;;;30239:4;30028:265;;;;;;30263:15;30028:265;;;;;;;;;;;;;;;;;;;;;30047:15;;;;;30028:100;;30147:11;;30197:15;;30239:4;30263:15;30028:265;;;;;;;;;;;;;;;;30047:15;8:100:-1;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;30028:265:0;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;30028:265:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;30309:434:0;30414:15;;30390:53;;30407:4;;30414:15;;30431:11;30390:8;:53::i;:::-;30475:15;;30456:279;;;;;;30579:4;30456:279;;;;;;;;;;;;30475:15;30456:279;;;;;;;;;;;;;;30705:15;30456:279;;;;;;30475:15;;;;;30456:65;;30542:9;;30456:279;;;;;;;;;;;;;;30542:9;30475:15;30456:279;;;5:2:-1;;;;30:1;27;20:12;5:2;30456:279:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;30456:279:0;;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;30309:434:0:o;6514:181::-;6572:7;6604:5;;;6628:6;;;;6620:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33398:170;33493:19;;;;33489:1;33493:19;;;:10;:19;;;;;;33466:55;;33493:19;33514:6;33466:14;:55::i;:::-;33532:28;33544:7;33553:6;33532:11;:28::i;33576:170::-;33659:19;;;;;;;;:10;:19;;;;;;33644:55;;33659:19;;33692:6;33644:14;:55::i;:::-;33710:28;33722:7;33731:6;33710:11;:28::i;25846:154::-;25914:32;:16;25938:7;25914:32;:23;:32;:::i;:::-;25962:30;;;;;;;;;;;25846:154;:::o;7886:471::-;7944:7;8189:6;8185:47;;-1:-1:-1;8219:1:0;8212:8;;8185:47;8256:5;;;8260:1;8256;:5;:1;8280:5;;;;;:10;8272:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39948:449;40065:21;;;;40039:23;40065:21;;;:10;:21;;;;;;;;;;40124:20;40076:9;40124;:20::i;:::-;40211:21;;;;;;;;:10;:21;;;;;;:33;;;;;;;;;;;;;40262:54;;40097:47;;-1:-1:-1;40211:33:0;40262:54;;;;;;40211:21;40262:54;40329:60;40344:15;40361:9;40372:16;40329:14;:60::i;25692:146::-;25757:29;:16;25778:7;25757:29;:20;:29;:::i;:::-;25802:28;;;;;;;;;;;25692:146;:::o;19160:232::-;19232:22;19238:7;19247:6;19232:5;:22::i;:::-;19265:119;19274:7;19283:12;:10;:12::i;:::-;19297:86;19336:6;19297:86;;;;;;;;;;;;;;;;;:20;;;;;;;:11;:20;;;;;;19318:12;:10;:12::i;22015:122::-;22072:21;:8;22085:7;22072:21;:12;:21;:::i;:::-;22109:20;;;;;;;;;;;22015:122;:::o;22145:130::-;22205:24;:8;22221:7;22205:24;:15;:24;:::i;:::-;22245:22;;;;;;;;;;;22145:130;:::o;20980:203::-;21052:4;21077:21;;;21069:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;21155:20:0;;:11;:20;;;;;;;;;;;;;;;20980:203::o;42252:153::-;42362:9;42252:153;:::o;33201:189::-;33297:16;;;;;;;;:10;:16;;;;;;;33315:14;;;;;;;;33282:56;;33297:16;;;;33315:14;33331:6;33282:14;:56::i;:::-;33349:33;33365:4;33371:2;33375:6;33349:15;:33::i;9487:345::-;9573:7;9675:12;9668:5;9660:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27:10:-1;;8:100;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;9660:28:0;;9699:9;9715:1;9711;:5;;;;;;;9487:345;-1:-1:-1;;;;;9487:345:0:o;40405:947::-;40511:6;40501:16;;:6;:16;;;;:30;;;;;40530:1;40521:6;:10;40501:30;40497:848;;;40552:20;;;;40548:385;;40660:22;;;40641:16;40660:22;;;:14;:22;;;;;;;;;40721:13;:60;;40780:1;40721:60;;;40737:19;;;;;;;:11;:19;;;;;;;;:34;40757:13;;;40737:34;;;;;;;;40769:1;40737:40;;40721:60;40701:80;-1:-1:-1;40800:17:0;40820:21;40701:80;40834:6;40820:21;:13;:21;:::i;:::-;40800:41;;40860:57;40877:6;40885:9;40896;40907;40860:16;:57::i;:::-;40548:385;;;;40953:20;;;;40949:385;;41061:22;;;41042:16;41061:22;;;:14;:22;;;;;;;;;41122:13;:60;;41181:1;41122:60;;;41138:19;;;;;;;:11;:19;;;;;;;;:34;41158:13;;;41138:34;;;;;;;;41170:1;41138:40;;41122:60;41102:80;-1:-1:-1;41201:17:0;41221:21;41102:80;41235:6;41221:21;:13;:21;:::i;:::-;41201:41;;41261:57;41278:6;41286:9;41297;41308;41261:16;:57::i;17208:308::-;17284:21;;;17276:65;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17369:12;;:24;;17386:6;17369:24;:16;:24;:::i;:::-;17354:12;:39;17425:18;;;:9;:18;;;;;;;;;;;:30;;17448:6;17425:30;:22;:30;:::i;:::-;17404:18;;;:9;:18;;;;;;;;;;;:51;;;;17471:37;;;;;;;17404:18;;:9;;17471:37;;;;;;;;;;17208:308;;:::o;17848:348::-;17924:21;;;17916:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18017:68;18040:6;18017:68;;;;;;;;;;;;;;;;;:18;;;:9;:18;;;;;;;;;;;;:68;;:22;:68;:::i;:::-;17996:18;;;:9;:18;;;;;;;;;;:89;18111:12;;:24;;18128:6;18111:24;:16;:24;:::i;:::-;18096:12;:39;18151:37;;;;;;;;18177:1;;18151:37;;;;;;;;;;;;;17848:348;;:::o;20702:183::-;20782:18;20786:4;20792:7;20782:3;:18::i;:::-;20774:64;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20849:20;;20872:5;20849:20;;;;;;;;;;;:28;;;;;;20702:183::o;20444:178::-;20522:18;20526:4;20532:7;20522:3;:18::i;:::-;20521:19;20513:63;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20587:20;;:11;:20;;;;;;;;;;;:27;;;;20610:4;20587:27;;;20444:178::o;16456:471::-;16554:20;;;16546:70;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16635:23;;;16627:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16731;16753:6;16731:71;;;;;;;;;;;;;;;;;:17;;;:9;:17;;;;;;;;;;;;:71;;:21;:71;:::i;:::-;16711:17;;;;:9;:17;;;;;;;;;;;:91;;;;16836:20;;;;;;;:32;;16861:6;16836:32;:24;:32;:::i;:::-;16813:20;;;;:9;:20;;;;;;;;;;;;:55;;;;16884:35;;;;;;;16813:20;;16884:35;;;;;;;;;;;;;16456:471;;;:::o;41360:715::-;41539:18;41560:87;41567:12;41560:87;;;;;;;;;;;;;;;;;:6;:87::i;:::-;41539:108;;41679:1;41664:12;:16;;;:85;;;;-1:-1:-1;41684:22:0;;;;;;;:11;:22;;;;;;;;:65;41707:16;;;41684:40;;;;;;;;;:50;:65;;;:50;;:65;41664:85;41660:339;;;41766:22;;;;;;;:11;:22;;;;;;;;:40;41789:16;;;41766:40;;;;;;;;41804:1;41766:46;:57;;;41660:339;;;41895:33;;;;;;;;;;;;;;;;;;;;;41856:22;;;-1:-1:-1;41856:22:0;;;:11;:22;;;;;:36;;;;;;;;;;:72;;;;;;;;;;;;;;;;;;;;;41943:25;;;:14;:25;;;;;;:44;;41971:16;;;41943:44;;;;;;;;;;41660:339;42016:51;;;;;;;;;;;;;;;;;;;;;;;;;;41360:715;;;;;:::o;42083:161::-;42158:6;42196:12;42189:5;42185:9;;42177:32;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27:10:-1;;8:100;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;42177:32:0;-1:-1:-1;42234:1:0;;42083:161;-1:-1:-1;;42083:161:0:o;42477:1522::-;;;;;;;;;;-1:-1:-1;42477:1522:0;;;;;;;;:::o
Swarm Source
bzzr://ea523a06b70cd3071854cfb8699229d309de4474d701f8bcadf2617eb7c87073
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.