Source Code
Latest 23 from a total of 23 transactions
| Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
|---|---|---|---|---|---|---|---|---|---|
| Sell | 22830135 | 129 days ago | IN | 0 ETH | 0.00002925 | ||||
| Start Swap | 18681660 | 709 days ago | IN | 0 ETH | 0.00218578 | ||||
| Sell | 18678948 | 710 days ago | IN | 0 ETH | 0.00227512 | ||||
| Sell Order | 17003694 | 945 days ago | IN | 0 ETH | 0.0023383 | ||||
| Sell Order | 17003693 | 945 days ago | IN | 0 ETH | 0.00230342 | ||||
| Buy Order | 17003687 | 945 days ago | IN | 0 ETH | 0.00230917 | ||||
| Withdraw Ether | 17003679 | 945 days ago | IN | 0 ETH | 0.00072507 | ||||
| Validate | 16910732 | 958 days ago | IN | 0 ETH | 0.0013111 | ||||
| Validate | 16703839 | 987 days ago | IN | 0 ETH | 0.00165951 | ||||
| Start Swap | 15641762 | 1135 days ago | IN | 0 ETH | 0.0005572 | ||||
| Start Swap To | 15211984 | 1202 days ago | IN | 0 ETH | 0.00160005 | ||||
| Start Swap | 15195597 | 1204 days ago | IN | 0 ETH | 0.00074002 | ||||
| Sell Order | 14962242 | 1243 days ago | IN | 0 ETH | 0.00676497 | ||||
| Start Swap | 13913308 | 1408 days ago | IN | 0 ETH | 0.00400309 | ||||
| Start Swap | 13839086 | 1419 days ago | IN | 0 ETH | 0.0029968 | ||||
| Buy Order | 13837535 | 1419 days ago | IN | 0 ETH | 0.00458214 | ||||
| Deposit Ether | 13837527 | 1419 days ago | IN | 0.45 ETH | 0.00206813 | ||||
| Sell Order | 13837516 | 1419 days ago | IN | 0 ETH | 0.00584123 | ||||
| Buy Order | 13837506 | 1419 days ago | IN | 0 ETH | 0.00760716 | ||||
| Deposit Coins | 13837506 | 1419 days ago | IN | 0 ETH | 0.00332434 | ||||
| Start Swap | 13837053 | 1420 days ago | IN | 0 ETH | 0.00484903 | ||||
| Deposit Ether | 13836996 | 1420 days ago | IN | 0.1 ETH | 0.00257889 | ||||
| Set Max Bridge V... | 13834939 | 1420 days ago | IN | 0 ETH | 0.00129676 |
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Contract Name:
EthChgCoinService
Compiler Version
v0.5.17+commit.d19bba13
Contract Source Code (Solidity)
/**
*Submitted for verification at Etherscan.io on 2021-12-17
*/
// SPDX-License-Identifier: MIT
// 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/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/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/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"));
}
}
pragma solidity ^0.5.0;
/*
* The Charg Service Contract
*
* Handles Charg Swap Exchange, Bridge, Services and Feedbacks on the Ethereum Blockchain
*
*/
contract EthChgCoinService {
using SafeMath for uint;
address payable public owner;
/**
* the CHG coins contract
*/
ERC20 private erc20Instance;
/**
* the node main data
*/
struct NodeData {
bool registered;
bool authorized;
/* lat, lon values, multiplied by 10^7 */
int128 latitude;
int128 longitude;
/* main parameters */
string name;
string phone;
string location;
string connector;
string power;
}
/**
* service parameters for the particular node
*/
struct ServiceData {
bool allowed; // service allowed on the node
uint rate; // service rate in coins gwei per second
uint maxTime; // max service time in seconds (0==unlimited)
bool stopable;// return allowed
}
/* service action data */
struct ServiceAction {
uint started;
uint finished;
bool stopable;
address node;
address payer;
uint serviceRate;
uint16 serviceId;
uint8 feedbackRate;
string feedbackText;
}
uint16 public servicesCount = 0;
mapping (uint16 => string) public services; // array of possible services
mapping (address => mapping (bytes32 => string)) public nodeParameters; //node => parametrHash => parameterValue
mapping (address => NodeData) public registeredNodes;
mapping (address => mapping (uint16 => ServiceData)) public nodeService; //node => serviceId => ServiceData
mapping (bytes32 => ServiceAction) public serviceActions; // paymentHash => ServiceAction
/**
* minimal CHG balance for startД±ng service on the node
*/
uint public minCoinsBalance = 500 * 10 ** 18; // 500 CHG default
/**
* Exchange Service Structures
*/
struct Order {
address user;
uint amountGive;
uint amountGet;
uint expire;
}
mapping (bytes32 => Order) public sellOrders;
mapping (bytes32 => Order) public buyOrders;
/* balance of nodes */
mapping (address => uint) public ethBalance;
mapping (address => uint) public coinBalance;
/* sevice events */
event NodeRegistered ( address indexed addr, int128 indexed latitude, int128 indexed longitude, string name, string location, string phone, string connector, string power );
event DepositEther ( address sender, uint EthValue, uint EthBalance );
event WithdrawEther ( address sender, uint EthValue, uint EthBalance );
event DepositCoins ( address sender, uint CoinValue, uint CoinBalance );
event WithdrawCoins ( address sender, uint CoinValue, uint CoinBalance );
event SellOrder ( bytes32 indexed orderHash, uint amountGive, uint amountGet, uint expire, address seller );
event BuyOrder ( bytes32 indexed orderHash, uint amountGive, uint amountGet, uint expire, address buyer );
event CancelSellOrder ( bytes32 indexed orderHash );
event CancelBuyOrder ( bytes32 indexed orderHash );
event Sell ( bytes32 indexed orderHash, uint amountGive, uint amountGet, address seller );
event Buy ( bytes32 indexed orderHash, uint amountGive, uint amountGet, address buyer );
event ServiceOn ( address indexed nodeAddr, address indexed payer, bytes32 paymentHash, uint16 serviceId, uint chgAmount, uint serviceTime, uint finished);
event ServiceOff ( address indexed nodeAddr, address indexed payer, bytes32 paymentHash, uint16 serviceId, uint chgAmount, uint serviceTime, uint finished);
event Feedback ( address indexed nodeAddr, address indexed payer, bytes32 paymentHash, uint16 serviceId, uint8 feedbackRate);
/*
* Bridge
*/
uint64 public networkId; // this network id
uint256 public minBridgeValue = 1 * 10**18; // min. bridge transfer value (1 CHG)
uint256 public maxBridgeValue = 10000 * 10**18; // max. bridge transfer value (10000 CHG)
struct Chain {
bool active;
string networkName;
}
mapping (uint64 => Chain) public chains; // networkId => Chain
mapping (bytes32 => bool) public swaps;
mapping (address => bool) public isValidator;
event Swap(address indexed from, address indexed to, uint256 value, uint64 chainId, bytes32 chainHash);
event Validated(bytes32 indexed txHash, address indexed account, uint256 value);
/**
* constructor
*/
constructor(address _tokenAddress, uint64 _networkId) public {
owner = msg.sender;
isValidator[owner] = true;
erc20Instance = ERC20(_tokenAddress);
networkId = _networkId;
/* initial services */
services[servicesCount] = 'Charg';
servicesCount++;
services[servicesCount] = 'Parking';
servicesCount++;
services[servicesCount] = 'Internet';
servicesCount++;
/* initial chains */
chains[1] = Chain(true, 'Ethereum Mainnet');
chains[56] = Chain(true, 'Binance Smart Chain');
chains[128] = Chain(true, 'Heco Chain');
chains[137] = Chain(true, 'Polygon Network');
chains[32659] = Chain(true, 'Fusion Network');
chains[42161] = Chain(true, 'Arbitrum One Chain');
chains[22177] = Chain(true, 'Native Charg Network');
}
function() external payable {
depositEther();
}
function setOwner(address payable newOwner) public {
require(msg.sender == owner, "only owner");
owner = newOwner;
}
/* add a new service to the smart contract */
function addService( string memory name ) public {
require(msg.sender == owner, "only owner");
services[servicesCount] = name;
servicesCount++;
}
/* register a new node */
function registerNode( int128 latitude, int128 longitude, string memory name, string memory location, string memory phone, string memory connector, string memory power, uint chargRate, uint parkRate, uint inetRate) public {
// check if node is not registered, or authorized for update
require ( !registeredNodes[msg.sender].registered || registeredNodes[msg.sender].authorized, "already registered" );
// check minimal coins balance
require (erc20Instance.balanceOf(msg.sender) >= minCoinsBalance);
if (!registeredNodes[msg.sender].registered) {
registeredNodes[msg.sender].registered = true;
registeredNodes[msg.sender].authorized = true;
}
registeredNodes[msg.sender].latitude = latitude;
registeredNodes[msg.sender].longitude = longitude;
registeredNodes[msg.sender].name = name;
registeredNodes[msg.sender].location = location;
registeredNodes[msg.sender].phone = phone;
registeredNodes[msg.sender].connector = connector;
registeredNodes[msg.sender].power = power;
if (chargRate > 0) {
nodeService[msg.sender][0].allowed = true;
nodeService[msg.sender][0].stopable = true;
nodeService[msg.sender][0].maxTime = 0;
nodeService[msg.sender][0].rate = chargRate;
}
if (parkRate > 0) {
nodeService[msg.sender][1].allowed = true;
nodeService[msg.sender][1].stopable = true;
nodeService[msg.sender][1].maxTime = 0;
nodeService[msg.sender][1].rate = parkRate;
}
if (inetRate > 0) {
nodeService[msg.sender][2].allowed = true;
nodeService[msg.sender][2].stopable = true;
nodeService[msg.sender][2].maxTime = 0;
nodeService[msg.sender][2].rate = inetRate;
}
emit NodeRegistered( msg.sender, latitude, longitude, name, location, phone, connector, power );
}
/* setup the node parameters */
function setNodeParameter(bytes32 parameterHash, string memory parameterValue) public {
require (registeredNodes[msg.sender].registered, "not registered");
nodeParameters[msg.sender][parameterHash] = parameterValue;
}
/* setup the node services */
function setupNodeService( uint16 serviceId, bool allowed, bool stopable, uint rate, uint maxTime ) public {
require (registeredNodes[msg.sender].registered, "not registered");
require (serviceId < servicesCount);
nodeService[msg.sender][serviceId].allowed = allowed;
nodeService[msg.sender][serviceId].stopable = stopable;
nodeService[msg.sender][serviceId].rate = rate;
nodeService[msg.sender][serviceId].maxTime = maxTime;
}
/* change the node authorization */
function modifyNodeAuthorization (address addr, bool authorized) public {
require(msg.sender == owner, "only owner");
require (registeredNodes[msg.sender].registered, "not registered");
registeredNodes[addr].authorized = authorized;
}
/* set minimal coins balance for the node */
function setMinCoinsBalance(uint _newValue) public {
require(msg.sender == owner, "only owner");
minCoinsBalance = _newValue;
}
function setMinBridgeValue(uint256 _value) public {
require(msg.sender == owner, "only owner");
require (_value > 0, "wrong value");
minBridgeValue = _value;
}
function setMaxBridgeValue(uint256 _value) public {
require(msg.sender == owner, "only owner");
require (_value > 0, "wrong value");
maxBridgeValue = _value;
}
function addValidator( address _validator ) public {
require(msg.sender == owner, "only owner");
isValidator[_validator] = true;
}
function removeValidator( address _validator ) public {
require(msg.sender == owner, "only owner");
isValidator[_validator] = false;
}
/* cross-chain parameters */
function setChain(bool _active, uint64 _networkId, string memory _networkName) public {
require(msg.sender == owner, "only owner");
chains[_networkId].active = _active;
chains[_networkId].networkName = _networkName;
}
function startSwapTo(address _to, uint256 _value, uint64 _networkId, bytes32 _chainHash) public {
require(_networkId != networkId, "current network");
require(chains[_networkId].active, "swap not allowed");
require(_value >= minBridgeValue && _value <= maxBridgeValue, "wrong value");
require(erc20Instance.transferFrom(msg.sender, address(this), _value), "increase allowance");
emit Swap(msg.sender, _to, _value, _networkId, _chainHash);
}
function startSwap(uint256 _value, uint64 _networkId, bytes32 _chainHash) public {
startSwapTo(msg.sender, _value, _networkId, _chainHash);
}
/* bridge transactions validation */
function validate(bytes32 txHash, address account, uint256 value, uint256 fee) public {
require (isValidator[msg.sender], "only validators");
require(!swaps[txHash], "already validated");
require (erc20Instance.balanceOf(address(this)) >= value, "low bridge balance");
erc20Instance.transfer(account, value);
if (fee > 0) {
coinBalance[msg.sender] = coinBalance[msg.sender].add(fee);
}
swaps[txHash] = true;
emit Validated(txHash, account, value);
}
function depositEther() public payable {
ethBalance[msg.sender] = ethBalance[msg.sender].add(msg.value);
emit DepositEther(msg.sender, msg.value, ethBalance[msg.sender]);
}
function withdrawEther(uint amount) public {
require(ethBalance[msg.sender] >= amount);
ethBalance[msg.sender] = ethBalance[msg.sender].sub(amount);
msg.sender.transfer(amount);
emit WithdrawEther(msg.sender, amount, ethBalance[msg.sender]);
}
function depositCoins(uint amount) public {
require(amount > 0 && erc20Instance.transferFrom(msg.sender, address(this), amount));
coinBalance[msg.sender] = coinBalance[msg.sender].add(amount);
emit DepositCoins(msg.sender, amount, coinBalance[msg.sender]);
}
function withdrawCoins(uint amount) public {
require(amount > 0 && coinBalance[msg.sender] >= amount);
coinBalance[msg.sender] = coinBalance[msg.sender].sub(amount);
require(erc20Instance.transfer(msg.sender, amount));
emit WithdrawCoins(msg.sender, amount, coinBalance[msg.sender]);
}
function buyOrder(uint amountGive, uint amountGet, uint expire) public {
require(amountGive > 0 && amountGet > 0 && amountGive <= ethBalance[msg.sender]);
bytes32 orderHash = sha256(abi.encodePacked(msg.sender, amountGive, amountGet, block.number));
buyOrders[orderHash] = Order(msg.sender, amountGive, amountGet, expire);
emit BuyOrder(orderHash, amountGive, amountGet, expire, msg.sender);
}
function sellOrder(uint amountGive, uint amountGet, uint expire) public {
require(amountGive > 0 && amountGet > 0 && amountGive <= coinBalance[msg.sender]);
bytes32 orderHash = sha256(abi.encodePacked(msg.sender, amountGive, amountGet, block.number));
sellOrders[orderHash] = Order(msg.sender, amountGive, amountGet, expire);
emit SellOrder(orderHash, amountGive, amountGet, expire, msg.sender);
}
function cancelBuyOrder(bytes32 orderHash) public {
require( buyOrders[orderHash].expire > now && buyOrders[orderHash].user == msg.sender);
buyOrders[orderHash].expire = 0;
emit CancelBuyOrder(orderHash);
}
function cancelSellOrder(bytes32 orderHash) public {
require( sellOrders[orderHash].expire > now && sellOrders[orderHash].user == msg.sender);
sellOrders[orderHash].expire = 0;
emit CancelSellOrder(orderHash);
}
function buy(bytes32 orderHash) public payable {
require(msg.value > 0 && now <= sellOrders[orderHash].expire && 0 <= sellOrders[orderHash].amountGet.sub(msg.value));
uint amountGet; //in CHG
if (msg.value == sellOrders[orderHash].amountGet) {
amountGet = sellOrders[orderHash].amountGive;
require(0 <= coinBalance[sellOrders[orderHash].user].sub(amountGet));
sellOrders[orderHash].amountGive = 0;
sellOrders[orderHash].amountGet = 0;
sellOrders[orderHash].expire = 0;
} else {
amountGet = sellOrders[orderHash].amountGive.mul(msg.value).div(sellOrders[orderHash].amountGet);
require(0 <= coinBalance[sellOrders[orderHash].user].sub(amountGet) && 0 <= sellOrders[orderHash].amountGive.sub(amountGet));
sellOrders[orderHash].amountGive = sellOrders[orderHash].amountGive.sub(amountGet);
sellOrders[orderHash].amountGet = sellOrders[orderHash].amountGet.sub(msg.value);
}
ethBalance[sellOrders[orderHash].user] = ethBalance[sellOrders[orderHash].user].add(msg.value);
coinBalance[sellOrders[orderHash].user] = coinBalance[sellOrders[orderHash].user].sub(amountGet);
require(erc20Instance.transfer(msg.sender, amountGet));
emit Buy(orderHash, sellOrders[orderHash].amountGive, sellOrders[orderHash].amountGet, msg.sender);
}
function sell(bytes32 orderHash, uint amountGive) public {
require(buyOrders[orderHash].user != msg.sender, "order owner");
require(amountGive > 0 && now <= buyOrders[orderHash].expire && 0 <= buyOrders[orderHash].amountGet.sub(amountGive));
uint amountGet;
if (amountGive == buyOrders[orderHash].amountGet) {
amountGet = buyOrders[orderHash].amountGive;
require(0 <= ethBalance[buyOrders[orderHash].user].sub(amountGet));
buyOrders[orderHash].amountGive = 0;
buyOrders[orderHash].amountGet = 0;
buyOrders[orderHash].expire = 0;
} else {
amountGet = buyOrders[orderHash].amountGive.mul(amountGive).div(buyOrders[orderHash].amountGet);
require(0 <= ethBalance[buyOrders[orderHash].user].sub(amountGet) && 0 <= buyOrders[orderHash].amountGive.sub(amountGet));
buyOrders[orderHash].amountGive = buyOrders[orderHash].amountGive.sub(amountGet);
buyOrders[orderHash].amountGet = buyOrders[orderHash].amountGet.sub(amountGive);
}
ethBalance[buyOrders[orderHash].user] = ethBalance[buyOrders[orderHash].user].sub(amountGet);
require(erc20Instance.transferFrom(msg.sender, buyOrders[orderHash].user, amountGive));
msg.sender.transfer(amountGet);
emit Sell(orderHash, buyOrders[orderHash].amountGive, buyOrders[orderHash].amountGet, msg.sender);
}
/*
* Method serviceOn
* Make an exchange and start service on the node
*
* nodeAddr - the node which provides service
* serviceId - id of the started service, described in Node Service Contract (0-charge, 1-parking, 2-internet ...)
* orderHash - hash of exchange sell order
* paymentHash - hash of the payment transaction
*/
function serviceOn(address nodeAddr, uint16 serviceId, uint time, bytes32 paymentHash, bytes32 orderHash) public payable returns (bytes32) {
require ( registeredNodes[nodeAddr].authorized // the node is registered and authorized
&& (erc20Instance.balanceOf(nodeAddr) >= minCoinsBalance) // minimal balance of the node
&& nodeService[nodeAddr][serviceId].allowed, 'not allowed'); // sevice is allowed on the node
if (paymentHash == 0)
paymentHash = keccak256(abi.encodePacked(msg.sender, now, serviceId));
require (serviceActions[paymentHash].started == 0, 'payment served');
uint chgAmount;
if (msg.value > 0) {
// payment in ether, exchange required
require(now <= sellOrders[orderHash].expire && 0 <= sellOrders[orderHash].amountGet.sub(msg.value), 'low order balance');
if (msg.value == sellOrders[orderHash].amountGet) {
chgAmount = sellOrders[orderHash].amountGive;
require(0 <= coinBalance[sellOrders[orderHash].user].sub(chgAmount), 'low seller balance');
sellOrders[orderHash].amountGive = 0;
sellOrders[orderHash].amountGet = 0;
sellOrders[orderHash].expire = 0;
} else {
chgAmount = sellOrders[orderHash].amountGive.mul(msg.value).div(sellOrders[orderHash].amountGet);
require(0 <= coinBalance[sellOrders[orderHash].user].sub(chgAmount) && 0 <= sellOrders[orderHash].amountGive.sub(chgAmount), 'low seller/order balance');
sellOrders[orderHash].amountGive = sellOrders[orderHash].amountGive.sub(chgAmount);
sellOrders[orderHash].amountGet = sellOrders[orderHash].amountGet.sub(msg.value);
}
// time will be calculated by amount
time = chgAmount.div(nodeService[nodeAddr][serviceId].rate);
require ( time <= nodeService[nodeAddr][serviceId].maxTime || nodeService[nodeAddr][serviceId].maxTime == 0, 'wrong time');
coinBalance[sellOrders[orderHash].user] = coinBalance[sellOrders[orderHash].user].sub(chgAmount);
ethBalance[sellOrders[orderHash].user] = ethBalance[sellOrders[orderHash].user].add(msg.value);
require(erc20Instance.transfer(nodeAddr, chgAmount), 'transfer error');
emit Buy(orderHash, sellOrders[orderHash].amountGive, sellOrders[orderHash].amountGet, msg.sender);
} else {
// CHG payment
require ( time <= nodeService[nodeAddr][serviceId].maxTime || nodeService[nodeAddr][serviceId].maxTime == 0);
chgAmount = time.mul(nodeService[nodeAddr][serviceId].rate);
require( chgAmount > 0 );
require (erc20Instance.transferFrom(msg.sender, nodeAddr, chgAmount), 'transfer error');
}
serviceActions[paymentHash].node = nodeAddr;
serviceActions[paymentHash].payer = msg.sender; //will allow feedback for the sender
serviceActions[paymentHash].serviceRate = nodeService[nodeAddr][serviceId].rate;
serviceActions[paymentHash].serviceId = serviceId;
serviceActions[paymentHash].started = now;
serviceActions[paymentHash].finished = now + time;
serviceActions[paymentHash].stopable = nodeService[nodeAddr][serviceId].stopable;
emit ServiceOn (nodeAddr, msg.sender, paymentHash, serviceId, chgAmount, time, now + time);
return paymentHash;
}
/*
* Method serviceOff
* Turns off the service on the node
*/
function serviceOff( bytes32 paymentHash ) public {
require(serviceActions[paymentHash].started > 0
&& serviceActions[paymentHash].stopable
&& now < serviceActions[paymentHash].finished
&& serviceActions[paymentHash].payer == msg.sender);
uint time = serviceActions[paymentHash].finished.sub(now);
uint chgAmount = time.mul(serviceActions[paymentHash].serviceRate);
serviceActions[paymentHash].finished = now;
coinBalance[serviceActions[paymentHash].node] = coinBalance[serviceActions[paymentHash].node].sub(chgAmount);
require(erc20Instance.transfer(msg.sender, chgAmount));
emit ServiceOff (serviceActions[paymentHash].node, msg.sender, paymentHash, serviceActions[paymentHash].serviceId, chgAmount, time, now);
}
/*
* Method sendFeedback
* Store feedback of the successful payment transaction in the smart contract
* paymentHash - hash of the payment transaction
* rate - the node raiting 1..10 points
*/
function sendFeedback(bytes32 paymentHash, uint8 feedbackRate, string memory feedbackText) public {
require(serviceActions[paymentHash].payer == msg.sender && serviceActions[paymentHash].feedbackRate == 0);
serviceActions[paymentHash].feedbackRate = feedbackRate > 10 ? 10 : (feedbackRate < 1 ? 1 : feedbackRate);
serviceActions[paymentHash].feedbackText = feedbackText;
emit Feedback (serviceActions[paymentHash].node, msg.sender, paymentHash, serviceActions[paymentHash].serviceId, serviceActions[paymentHash].feedbackRate);
}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"address","name":"_tokenAddress","type":"address"},{"internalType":"uint64","name":"_networkId","type":"uint64"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"orderHash","type":"bytes32"},{"indexed":false,"internalType":"uint256","name":"amountGive","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amountGet","type":"uint256"},{"indexed":false,"internalType":"address","name":"buyer","type":"address"}],"name":"Buy","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"orderHash","type":"bytes32"},{"indexed":false,"internalType":"uint256","name":"amountGive","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amountGet","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"expire","type":"uint256"},{"indexed":false,"internalType":"address","name":"buyer","type":"address"}],"name":"BuyOrder","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"orderHash","type":"bytes32"}],"name":"CancelBuyOrder","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"orderHash","type":"bytes32"}],"name":"CancelSellOrder","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"sender","type":"address"},{"indexed":false,"internalType":"uint256","name":"CoinValue","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"CoinBalance","type":"uint256"}],"name":"DepositCoins","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"sender","type":"address"},{"indexed":false,"internalType":"uint256","name":"EthValue","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"EthBalance","type":"uint256"}],"name":"DepositEther","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"nodeAddr","type":"address"},{"indexed":true,"internalType":"address","name":"payer","type":"address"},{"indexed":false,"internalType":"bytes32","name":"paymentHash","type":"bytes32"},{"indexed":false,"internalType":"uint16","name":"serviceId","type":"uint16"},{"indexed":false,"internalType":"uint8","name":"feedbackRate","type":"uint8"}],"name":"Feedback","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"addr","type":"address"},{"indexed":true,"internalType":"int128","name":"latitude","type":"int128"},{"indexed":true,"internalType":"int128","name":"longitude","type":"int128"},{"indexed":false,"internalType":"string","name":"name","type":"string"},{"indexed":false,"internalType":"string","name":"location","type":"string"},{"indexed":false,"internalType":"string","name":"phone","type":"string"},{"indexed":false,"internalType":"string","name":"connector","type":"string"},{"indexed":false,"internalType":"string","name":"power","type":"string"}],"name":"NodeRegistered","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"orderHash","type":"bytes32"},{"indexed":false,"internalType":"uint256","name":"amountGive","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amountGet","type":"uint256"},{"indexed":false,"internalType":"address","name":"seller","type":"address"}],"name":"Sell","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"orderHash","type":"bytes32"},{"indexed":false,"internalType":"uint256","name":"amountGive","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amountGet","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"expire","type":"uint256"},{"indexed":false,"internalType":"address","name":"seller","type":"address"}],"name":"SellOrder","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"nodeAddr","type":"address"},{"indexed":true,"internalType":"address","name":"payer","type":"address"},{"indexed":false,"internalType":"bytes32","name":"paymentHash","type":"bytes32"},{"indexed":false,"internalType":"uint16","name":"serviceId","type":"uint16"},{"indexed":false,"internalType":"uint256","name":"chgAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"serviceTime","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"finished","type":"uint256"}],"name":"ServiceOff","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"nodeAddr","type":"address"},{"indexed":true,"internalType":"address","name":"payer","type":"address"},{"indexed":false,"internalType":"bytes32","name":"paymentHash","type":"bytes32"},{"indexed":false,"internalType":"uint16","name":"serviceId","type":"uint16"},{"indexed":false,"internalType":"uint256","name":"chgAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"serviceTime","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"finished","type":"uint256"}],"name":"ServiceOn","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"},{"indexed":false,"internalType":"uint64","name":"chainId","type":"uint64"},{"indexed":false,"internalType":"bytes32","name":"chainHash","type":"bytes32"}],"name":"Swap","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"txHash","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Validated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"sender","type":"address"},{"indexed":false,"internalType":"uint256","name":"CoinValue","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"CoinBalance","type":"uint256"}],"name":"WithdrawCoins","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"sender","type":"address"},{"indexed":false,"internalType":"uint256","name":"EthValue","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"EthBalance","type":"uint256"}],"name":"WithdrawEther","type":"event"},{"payable":true,"stateMutability":"payable","type":"fallback"},{"constant":false,"inputs":[{"internalType":"string","name":"name","type":"string"}],"name":"addService","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_validator","type":"address"}],"name":"addValidator","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"bytes32","name":"orderHash","type":"bytes32"}],"name":"buy","outputs":[],"payable":true,"stateMutability":"payable","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"amountGive","type":"uint256"},{"internalType":"uint256","name":"amountGet","type":"uint256"},{"internalType":"uint256","name":"expire","type":"uint256"}],"name":"buyOrder","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"name":"buyOrders","outputs":[{"internalType":"address","name":"user","type":"address"},{"internalType":"uint256","name":"amountGive","type":"uint256"},{"internalType":"uint256","name":"amountGet","type":"uint256"},{"internalType":"uint256","name":"expire","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"bytes32","name":"orderHash","type":"bytes32"}],"name":"cancelBuyOrder","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"bytes32","name":"orderHash","type":"bytes32"}],"name":"cancelSellOrder","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"uint64","name":"","type":"uint64"}],"name":"chains","outputs":[{"internalType":"bool","name":"active","type":"bool"},{"internalType":"string","name":"networkName","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"coinBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"depositCoins","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"depositEther","outputs":[],"payable":true,"stateMutability":"payable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"ethBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isValidator","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"maxBridgeValue","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"minBridgeValue","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"minCoinsBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"bool","name":"authorized","type":"bool"}],"name":"modifyNodeAuthorization","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"networkId","outputs":[{"internalType":"uint64","name":"","type":"uint64"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"bytes32","name":"","type":"bytes32"}],"name":"nodeParameters","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint16","name":"","type":"uint16"}],"name":"nodeService","outputs":[{"internalType":"bool","name":"allowed","type":"bool"},{"internalType":"uint256","name":"rate","type":"uint256"},{"internalType":"uint256","name":"maxTime","type":"uint256"},{"internalType":"bool","name":"stopable","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"internalType":"address payable","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"int128","name":"latitude","type":"int128"},{"internalType":"int128","name":"longitude","type":"int128"},{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"location","type":"string"},{"internalType":"string","name":"phone","type":"string"},{"internalType":"string","name":"connector","type":"string"},{"internalType":"string","name":"power","type":"string"},{"internalType":"uint256","name":"chargRate","type":"uint256"},{"internalType":"uint256","name":"parkRate","type":"uint256"},{"internalType":"uint256","name":"inetRate","type":"uint256"}],"name":"registerNode","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"registeredNodes","outputs":[{"internalType":"bool","name":"registered","type":"bool"},{"internalType":"bool","name":"authorized","type":"bool"},{"internalType":"int128","name":"latitude","type":"int128"},{"internalType":"int128","name":"longitude","type":"int128"},{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"phone","type":"string"},{"internalType":"string","name":"location","type":"string"},{"internalType":"string","name":"connector","type":"string"},{"internalType":"string","name":"power","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_validator","type":"address"}],"name":"removeValidator","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"bytes32","name":"orderHash","type":"bytes32"},{"internalType":"uint256","name":"amountGive","type":"uint256"}],"name":"sell","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"amountGive","type":"uint256"},{"internalType":"uint256","name":"amountGet","type":"uint256"},{"internalType":"uint256","name":"expire","type":"uint256"}],"name":"sellOrder","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"name":"sellOrders","outputs":[{"internalType":"address","name":"user","type":"address"},{"internalType":"uint256","name":"amountGive","type":"uint256"},{"internalType":"uint256","name":"amountGet","type":"uint256"},{"internalType":"uint256","name":"expire","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"bytes32","name":"paymentHash","type":"bytes32"},{"internalType":"uint8","name":"feedbackRate","type":"uint8"},{"internalType":"string","name":"feedbackText","type":"string"}],"name":"sendFeedback","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"name":"serviceActions","outputs":[{"internalType":"uint256","name":"started","type":"uint256"},{"internalType":"uint256","name":"finished","type":"uint256"},{"internalType":"bool","name":"stopable","type":"bool"},{"internalType":"address","name":"node","type":"address"},{"internalType":"address","name":"payer","type":"address"},{"internalType":"uint256","name":"serviceRate","type":"uint256"},{"internalType":"uint16","name":"serviceId","type":"uint16"},{"internalType":"uint8","name":"feedbackRate","type":"uint8"},{"internalType":"string","name":"feedbackText","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"bytes32","name":"paymentHash","type":"bytes32"}],"name":"serviceOff","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"nodeAddr","type":"address"},{"internalType":"uint16","name":"serviceId","type":"uint16"},{"internalType":"uint256","name":"time","type":"uint256"},{"internalType":"bytes32","name":"paymentHash","type":"bytes32"},{"internalType":"bytes32","name":"orderHash","type":"bytes32"}],"name":"serviceOn","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"payable":true,"stateMutability":"payable","type":"function"},{"constant":true,"inputs":[{"internalType":"uint16","name":"","type":"uint16"}],"name":"services","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"servicesCount","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"bool","name":"_active","type":"bool"},{"internalType":"uint64","name":"_networkId","type":"uint64"},{"internalType":"string","name":"_networkName","type":"string"}],"name":"setChain","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"_value","type":"uint256"}],"name":"setMaxBridgeValue","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"_value","type":"uint256"}],"name":"setMinBridgeValue","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"_newValue","type":"uint256"}],"name":"setMinCoinsBalance","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"bytes32","name":"parameterHash","type":"bytes32"},{"internalType":"string","name":"parameterValue","type":"string"}],"name":"setNodeParameter","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address payable","name":"newOwner","type":"address"}],"name":"setOwner","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"uint16","name":"serviceId","type":"uint16"},{"internalType":"bool","name":"allowed","type":"bool"},{"internalType":"bool","name":"stopable","type":"bool"},{"internalType":"uint256","name":"rate","type":"uint256"},{"internalType":"uint256","name":"maxTime","type":"uint256"}],"name":"setupNodeService","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"_value","type":"uint256"},{"internalType":"uint64","name":"_networkId","type":"uint64"},{"internalType":"bytes32","name":"_chainHash","type":"bytes32"}],"name":"startSwap","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_value","type":"uint256"},{"internalType":"uint64","name":"_networkId","type":"uint64"},{"internalType":"bytes32","name":"_chainHash","type":"bytes32"}],"name":"startSwapTo","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"name":"swaps","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"bytes32","name":"txHash","type":"bytes32"},{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"uint256","name":"fee","type":"uint256"}],"name":"validate","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdrawCoins","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdrawEther","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"}]Contract Creation Code
60806040526001805461ffff60a01b19169055681b1ae4d6e2ef500000600755670de0b6b3a7640000600d5569021e19e0c9bab2400000600e553480156200004657600080fd5b506040516200528238038062005282833981810160405260408110156200006c57600080fd5b50805160209182015160008054336001600160a01b0319918216178083556001600160a01b039081168352601186526040808420805460ff1916600190811790915580549093169186169190911791829055600c80546001600160401b0319166001600160401b038616179055805180820182526005815264436861726760d81b818801908152600160a01b90930461ffff16845260029096529091209351929391926200011c92919062000717565b506001805461ffff600160a01b808304821684018216810261ffff60a01b19909316929092179283905560408051808201825260078152665061726b696e6760c81b60208083019182529490950490921660009081526002909352909120905162000188929062000717565b506001805461ffff600160a01b808304821684018216810261ffff60a01b1990931692909217928390556040805180820182526008815267125b9d195c9b995d60c21b602080830191825294909504909216600090815260029093529091209051620001f5929062000717565b506001805461ffff60a01b198116600160a01b9182900461ffff9081168401169091021781556040805180820182528281528151808301909252601082526f115d1a195c995d5b4813585a5b9b995d60821b602080840191909152808201928352600093909352600f835280517f169f97de0d9a84d840042b17d3c6b9638b3d6fd9024c9eb0c7a306a17b49f88f805460ff1916911515919091178155915180519193620002c9927f169f97de0d9a84d840042b17d3c6b9638b3d6fd9024c9eb0c7a306a17b49f890929091019062000717565b5050604080518082018252600181528151808301909252601382527f42696e616e636520536d61727420436861696e000000000000000000000000006020808401919091528082019283526038600052600f815281517ff7ee23963838efbf9d6ca2ceaaa420879a67c9d81cc91e0b7ced234b09a30907805460ff19169115159190911781559251805192945062000388927ff7ee23963838efbf9d6ca2ceaaa420879a67c9d81cc91e0b7ced234b09a3090892919091019062000717565b5050604080518082018252600181528151808301909252600a8252692432b1b79021b430b4b760b11b6020808401919091528082019283526080600052600f815281517f52e65f8a73a081aa5fd54eaf5f2b023fbf3abccf6783ce1d2b8d730da39c52f1805460ff19169115159190911781559251805192945062000434927f52e65f8a73a081aa5fd54eaf5f2b023fbf3abccf6783ce1d2b8d730da39c52f292919091019062000717565b5050604080518082018252600181528151808301909252600f8083526e506f6c79676f6e204e6574776f726b60881b602080850191909152808301938452608960005290815281517f0f2379783e684056808f51592184e2177d51c5c549205310ce06c0df0697b3dd805460ff191691151591909117815592518051929450620004e5927f0f2379783e684056808f51592184e2177d51c5c549205310ce06c0df0697b3de92919091019062000717565b5050604080518082018252600181528151808301909252600e82526d467573696f6e204e6574776f726b60901b602080840191909152808201928352617f93600052600f815281517f82a05734e30c15b7c65bc6ce9933f2db28411495017e1f960ef12c739a8153ea805460ff19169115159190911781559251805192945062000596927f82a05734e30c15b7c65bc6ce9933f2db28411495017e1f960ef12c739a8153eb92919091019062000717565b5050604080518082018252600181528151808301909252601282527120b93134ba393ab69027b7329021b430b4b760711b60208084019190915280820192835261a4b1600052600f815281517f9c636a48e5d49cbd541bd673ae87a364fe4522174f8a98dfdee92d61b2e8ca51805460ff1916911515919091178155925180519294506200064b927f9c636a48e5d49cbd541bd673ae87a364fe4522174f8a98dfdee92d61b2e8ca5292919091019062000717565b5050604080518082018252600181528151808301909252601482527f4e6174697665204368617267204e6574776f726b0000000000000000000000006020808401919091528082019283526156a1600052600f815281517fcff566cfa7d1968452df7516e676a06c7a307a54784ddf6f6b7ae5e54dfa06fd805460ff1916911515919091178155925180519294506200070b927fcff566cfa7d1968452df7516e676a06c7a307a54784ddf6f6b7ae5e54dfa06fe92919091019062000717565b509050505050620007bc565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200075a57805160ff19168380011785556200078a565b828001600101855582156200078a579182015b828111156200078a5782518255916020019190600101906200076d565b50620007989291506200079c565b5090565b620007b991905b80821115620007985760008155600101620007a3565b90565b614ab680620007cc6000396000f3fe60806040526004361061027c5760003560e01c80637be1bf181161014f578063d3d1fb48116100c1578063eeba014c1161007a578063eeba014c1461132c578063efe6bfa314611365578063f645e00a1461138f578063f9f95a0f146113d4578063fabde80c146113fe578063facd743b146114315761027c565b8063d3d1fb4814610fbd578063d8f3790f14611230578063d9c6913614611263578063e176713114611278578063e24f9650146112ae578063eb84e7f2146112ee5761027c565b80639631fb3c116101135780639631fb3c14610dc657806398ea5fca1461027c5780639c9a106114610df0578063a5a657b414610e0d578063ada8bcdc14610ed6578063b592de3a14610f8d5761027c565b80637be1bf1814610c5e57806388fcd19414610c885780638da5cb5b14610d395780639025e64c14610d6a578063939d1e9614610d9c5761027c565b80633bed33ce116101f35780634dc238a6116101ac5780634dc238a6146107ac5780635a6c858c146107f65780635bd92d9c1461085d5780635e14a2f7146108ac57806364dc69111461096457806366b39fc314610c495761027c565b80633bed33ce146105bf5780633e3ac461146105e957806340a141ff146106e157806347e4b7be146107145780634827f1d21461073e5780634d238c8e146107795761027c565b806313af40351161024557806313af403514610403578063178706b514610436578063223a30751461048a57806328c662a61461049f5780633a168c82146104d55780633a5c2ccf146104ff5761027c565b8062dd69f014610286578063041d40c11461032957806307d2f5db1461038357806309642cf0146103ad5780630bf08787146103d7575b610284611464565b005b34801561029257600080fd5b506102b4600480360360208110156102a957600080fd5b503561ffff166114d9565b6040805160208082528351818301528351919283929083019185019080838360005b838110156102ee5781810151838201526020016102d6565b50505050905090810190601f16801561031b5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561033557600080fd5b506103536004803603602081101561034c57600080fd5b5035611572565b604080516001600160a01b0390951685526020850193909352838301919091526060830152519081900360800190f35b34801561038f57600080fd5b50610284600480360360208110156103a657600080fd5b50356115a3565b3480156103b957600080fd5b50610284600480360360208110156103d057600080fd5b50356117d4565b3480156103e357600080fd5b506103ec6118e5565b6040805161ffff9092168252519081900360200190f35b34801561040f57600080fd5b506102846004803603602081101561042657600080fd5b50356001600160a01b03166118f6565b610478600480360360a081101561044c57600080fd5b506001600160a01b038135169061ffff6020820135169060408101359060608101359060800135611964565b60408051918252519081900360200190f35b34801561049657600080fd5b50610478612369565b3480156104ab57600080fd5b50610284600480360360608110156104c257600080fd5b508035906020810135906040013561236f565b3480156104e157600080fd5b50610284600480360360208110156104f857600080fd5b503561252c565b34801561050b57600080fd5b506102846004803603606081101561052257600080fd5b81359160ff60208201351691810190606081016040820135600160201b81111561054b57600080fd5b82018360208201111561055d57600080fd5b803590602001918460018302840111600160201b8311171561057e57600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295506125a9945050505050565b3480156105cb57600080fd5b50610284600480360360208110156105e257600080fd5b50356126dd565b3480156105f557600080fd5b506106136004803603602081101561060c57600080fd5b50356127a9565b604080518a815260208082018b9052891515928201929092526001600160a01b0380891660608301528716608082015260a0810186905261ffff851660c082015260ff841660e0820152610120610100820181815284519183019190915283519192909161014084019185019080838360005b8381101561069e578181015183820152602001610686565b50505050905090810190601f1680156106cb5780820380516001836020036101000a031916815260200191505b509a505050505050505050505060405180910390f35b3480156106ed57600080fd5b506102846004803603602081101561070457600080fd5b50356001600160a01b0316612893565b34801561072057600080fd5b506102846004803603602081101561073757600080fd5b5035612900565b34801561074a57600080fd5b506102846004803603604081101561076157600080fd5b506001600160a01b0381351690602001351515612951565b34801561078557600080fd5b506102846004803603602081101561079c57600080fd5b50356001600160a01b0316612a23565b3480156107b857600080fd5b50610284600480360360a08110156107cf57600080fd5b5061ffff813516906020810135151590604081013515159060608101359060800135612a93565b34801561080257600080fd5b506108336004803603604081101561081957600080fd5b5080356001600160a01b0316906020013561ffff16612b57565b60408051941515855260208501939093528383019190915215156060830152519081900360800190f35b34801561086957600080fd5b506102846004803603608081101561088057600080fd5b506001600160a01b038135169060208101359067ffffffffffffffff6040820135169060600135612b8e565b3480156108b857600080fd5b50610284600480360360408110156108cf57600080fd5b81359190810190604081016020820135600160201b8111156108f057600080fd5b82018360208201111561090257600080fd5b803590602001918460018302840111600160201b8311171561092357600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550612dc0945050505050565b34801561097057600080fd5b50610284600480360361014081101561098857600080fd5b8135600f90810b92602081013590910b91810190606081016040820135600160201b8111156109b657600080fd5b8201836020820111156109c857600080fd5b803590602001918460018302840111600160201b831117156109e957600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295949360208101935035915050600160201b811115610a3b57600080fd5b820183602082011115610a4d57600080fd5b803590602001918460018302840111600160201b83111715610a6e57600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295949360208101935035915050600160201b811115610ac057600080fd5b820183602082011115610ad257600080fd5b803590602001918460018302840111600160201b83111715610af357600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295949360208101935035915050600160201b811115610b4557600080fd5b820183602082011115610b5757600080fd5b803590602001918460018302840111600160201b83111715610b7857600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295949360208101935035915050600160201b811115610bca57600080fd5b820183602082011115610bdc57600080fd5b803590602001918460018302840111600160201b83111715610bfd57600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295505082359350505060208101359060400135612e42565b348015610c5557600080fd5b506104786133cc565b348015610c6a57600080fd5b5061028460048036036020811015610c8157600080fd5b50356133d2565b348015610c9457600080fd5b5061028460048036036020811015610cab57600080fd5b810190602081018135600160201b811115610cc557600080fd5b820183602082011115610cd757600080fd5b803590602001918460018302840111600160201b83111715610cf857600080fd5b91908080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525092955061344f945050505050565b348015610d4557600080fd5b50610d4e6134f0565b604080516001600160a01b039092168252519081900360200190f35b348015610d7657600080fd5b50610d7f6134ff565b6040805167ffffffffffffffff9092168252519081900360200190f35b348015610da857600080fd5b5061028460048036036020811015610dbf57600080fd5b503561350f565b348015610dd257600080fd5b5061028460048036036020811015610de957600080fd5b50356135a3565b61028460048036036020811015610e0657600080fd5b5035613637565b348015610e1957600080fd5b5061028460048036036060811015610e3057600080fd5b813515159167ffffffffffffffff60208201351691810190606081016040820135600160201b811115610e6257600080fd5b820183602082011115610e7457600080fd5b803590602001918460018302840111600160201b83111715610e9557600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550613973945050505050565b348015610ee257600080fd5b50610f0a60048036036020811015610ef957600080fd5b503567ffffffffffffffff16613a01565b604051808315151515815260200180602001828103825283818151815260200191508051906020019080838360005b83811015610f51578181015183820152602001610f39565b50505050905090810190601f168015610f7e5780820380516001836020036101000a031916815260200191505b50935050505060405180910390f35b348015610f9957600080fd5b5061028460048036036040811015610fb057600080fd5b5080359060200135613aaf565b348015610fc957600080fd5b50610ff060048036036020811015610fe057600080fd5b50356001600160a01b0316613e3f565b604051808a1515151581526020018915151515815260200188600f0b600f0b815260200187600f0b600f0b8152602001806020018060200180602001806020018060200186810386528b818151815260200191508051906020019080838360005b83811015611069578181015183820152602001611051565b50505050905090810190601f1680156110965780820380516001836020036101000a031916815260200191505b5086810385528a5181528a516020918201918c019080838360005b838110156110c95781810151838201526020016110b1565b50505050905090810190601f1680156110f65780820380516001836020036101000a031916815260200191505b5086810384528951815289516020918201918b019080838360005b83811015611129578181015183820152602001611111565b50505050905090810190601f1680156111565780820380516001836020036101000a031916815260200191505b5086810383528851815288516020918201918a019080838360005b83811015611189578181015183820152602001611171565b50505050905090810190601f1680156111b65780820380516001836020036101000a031916815260200191505b50868103825287518152875160209182019189019080838360005b838110156111e95781810151838201526020016111d1565b50505050905090810190601f1680156112165780820380516001836020036101000a031916815260200191505b509e50505050505050505050505050505060405180910390f35b34801561123c57600080fd5b506104786004803603602081101561125357600080fd5b50356001600160a01b0316614112565b34801561126f57600080fd5b50610478614124565b34801561128457600080fd5b506102846004803603606081101561129b57600080fd5b508035906020810135906040013561412a565b3480156112ba57600080fd5b50610284600480360360608110156112d157600080fd5b5080359067ffffffffffffffff60208201351690604001356142e7565b3480156112fa57600080fd5b506113186004803603602081101561131157600080fd5b50356142f3565b604080519115158252519081900360200190f35b34801561133857600080fd5b506102b46004803603604081101561134f57600080fd5b506001600160a01b038135169060200135614308565b34801561137157600080fd5b506103536004803603602081101561138857600080fd5b5035614379565b34801561139b57600080fd5b50610284600480360360808110156113b257600080fd5b508035906001600160a01b0360208201351690604081013590606001356143aa565b3480156113e057600080fd5b50610284600480360360208110156113f757600080fd5b503561462f565b34801561140a57600080fd5b506104786004803603602081101561142157600080fd5b50356001600160a01b0316614762565b34801561143d57600080fd5b506113186004803603602081101561145457600080fd5b50356001600160a01b0316614774565b336000908152600a6020526040902054611484903463ffffffff61478916565b336000818152600a6020908152604091829020849055815192835234908301528181019290925290517f20d6bac8359f33d79581bfd2b0457cb189fda6d90fed287ddc9f2ba3eb124b679181900360600190a1565b600260208181526000928352604092839020805484516001821615610100026000190190911693909304601f810183900483028401830190945283835291929083018282801561156a5780601f1061153f5761010080835404028352916020019161156a565b820191906000526020600020905b81548152906001019060200180831161154d57829003601f168201915b505050505081565b60096020526000908152604090208054600182015460028301546003909301546001600160a01b0390921692909184565b600081815260066020526040902054158015906115d1575060008181526006602052604090206002015460ff165b80156115ed575060008181526006602052604090206001015442105b801561161257506000818152600660205260409020600301546001600160a01b031633145b61161b57600080fd5b60008181526006602052604081206001015461163d904263ffffffff6147ec16565b6000838152600660205260408120600401549192509061166490839063ffffffff61482e16565b60008481526006602090815260408083204260018201556002015461010090046001600160a01b03168352600b9091529020549091506116a490826147ec565b6000848152600660209081526040808320600201546001600160a01b0361010090910481168452600b835281842094909455600154815163a9059cbb60e01b815233600482015260248101879052915194169363a9059cbb93604480840194938390030190829087803b15801561171a57600080fd5b505af115801561172e573d6000803e3d6000fd5b505050506040513d602081101561174457600080fd5b505161174f57600080fd5b6000838152600660209081526040918290206002810154600590910154835187815261ffff90911692810192909252818301849052606082018590524260808301529151339261010090046001600160a01b0316917f5926c04550435944a3cff7b8d7e66ec761c5b42702f9cd25448b08b329d6146a919081900360a00190a3505050565b6000811180156118665750600154604080516323b872dd60e01b81523360048201523060248201526044810184905290516001600160a01b03909216916323b872dd916064808201926020929091908290030181600087803b15801561183957600080fd5b505af115801561184d573d6000803e3d6000fd5b505050506040513d602081101561186357600080fd5b50515b61186f57600080fd5b336000908152600b602052604090205461188f908263ffffffff61478916565b336000818152600b6020908152604091829020849055815192835282018490528181019290925290517f0e19e58d9dd9657044b18cacb159b832c52df06379f08a911c8b0f519530f0d79181900360600190a150565b600154600160a01b900461ffff1681565b6000546001600160a01b03163314611942576040805162461bcd60e51b815260206004820152600a60248201526937b7363c9037bbb732b960b11b604482015290519081900360640190fd5b600080546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b038516600090815260046020526040812054610100900460ff168015611a0b5750600754600154604080516370a0823160e01b81526001600160a01b038a81166004830152915191909216916370a08231916024808301926020929190829003018186803b1580156119dc57600080fd5b505afa1580156119f0573d6000803e3d6000fd5b505050506040513d6020811015611a0657600080fd5b505110155b8015611a3e57506001600160a01b038616600090815260056020908152604080832061ffff8916845290915290205460ff165b611a7d576040805162461bcd60e51b815260206004820152600b60248201526a1b9bdd08185b1b1bddd95960aa1b604482015290519081900360640190fd5b82611ac757604080513360601b6020808301919091524260348301526001600160f01b031960f089901b166054830152825160368184030181526056909201909252805191012092505b60008381526006602052604090205415611b19576040805162461bcd60e51b815260206004820152600e60248201526d1c185e5b595b9d081cd95c9d995960921b604482015290519081900360640190fd5b60003415611fb3576000838152600860205260409020600301544211801590611b635750600083815260086020526040902060020154611b5f903463ffffffff6147ec16565b5060015b611ba8576040805162461bcd60e51b81526020600482015260116024820152706c6f77206f726465722062616c616e636560781b604482015290519081900360640190fd5b600083815260086020526040902060020154341415611c2457506000828152600860209081526040808320600181015490546001600160a01b03168452600b90925290912054611bfe908263ffffffff6147ec16565b506000838152600860205260408120600181018290556002810182905560030155611d19565b60008381526008602052604090206002810154600190910154611c5e9190611c52903463ffffffff61482e16565b9063ffffffff61488716565b6000848152600860209081526040808320546001600160a01b03168352600b909152902054909150611c96908263ffffffff6147ec16565b50600083815260086020526040902060010154611cb9908263ffffffff6147ec16565b50600083815260086020526040902060010154611cdc908263ffffffff6147ec16565b6000848152600860205260409020600181019190915560020154611d06903463ffffffff6147ec16565b6000848152600860205260409020600201555b6001600160a01b038716600090815260056020908152604080832061ffff8a168452909152902060010154611d5590829063ffffffff61488716565b6001600160a01b038816600090815260056020908152604080832061ffff8b16845290915290206002015490955085111580611db957506001600160a01b038716600090815260056020908152604080832061ffff8a168452909152902060020154155b611df7576040805162461bcd60e51b815260206004820152600a60248201526977726f6e672074696d6560b01b604482015290519081900360640190fd5b6000838152600860209081526040808320546001600160a01b03168352600b909152902054611e2c908263ffffffff6147ec16565b600084815260086020908152604080832080546001600160a01b039081168552600b845282852095909555549093168252600a90522054611e73903463ffffffff61478916565b6000848152600860209081526040808320546001600160a01b039081168452600a835281842094909455600154815163a9059cbb60e01b81528c8616600482015260248101879052915194169363a9059cbb93604480840194938390030190829087803b158015611ee357600080fd5b505af1158015611ef7573d6000803e3d6000fd5b505050506040513d6020811015611f0d57600080fd5b5051611f51576040805162461bcd60e51b815260206004820152600e60248201526d3a3930b739b332b91032b93937b960911b604482015290519081900360640190fd5b60008381526008602090815260409182902060018101546002909101548351918252918101919091523381830152905184917fe7b7cd2a58abb5403f3c8e07b31ddbe5a0a595c21d2a9f5f60885ee4c84ca2f4919081900360600190a2612132565b6001600160a01b038716600090815260056020908152604080832061ffff8a1684529091529020600201548511158061201457506001600160a01b038716600090815260056020908152604080832061ffff8a168452909152902060020154155b61201d57600080fd5b6001600160a01b038716600090815260056020908152604080832061ffff8a16845290915290206001015461205990869063ffffffff61482e16565b90506000811161206857600080fd5b600154604080516323b872dd60e01b81523360048201526001600160a01b038a8116602483015260448201859052915191909216916323b872dd9160648083019260209291908290030181600087803b1580156120c457600080fd5b505af11580156120d8573d6000803e3d6000fd5b505050506040513d60208110156120ee57600080fd5b5051612132576040805162461bcd60e51b815260206004820152600e60248201526d3a3930b739b332b91032b93937b960911b604482015290519081900360640190fd5b866006600086815260200190815260200160002060020160016101000a8154816001600160a01b0302191690836001600160a01b03160217905550336006600086815260200190815260200160002060030160006101000a8154816001600160a01b0302191690836001600160a01b0316021790555060056000886001600160a01b03166001600160a01b0316815260200190815260200160002060008761ffff1661ffff168152602001908152602001600020600101546006600086815260200190815260200160002060040181905550856006600086815260200190815260200160002060050160006101000a81548161ffff021916908361ffff160217905550426006600086815260200190815260200160002060000181905550844201600660008681526020019081526020016000206001018190555060056000886001600160a01b03166001600160a01b0316815260200190815260200160002060008761ffff1661ffff16815260200190815260200160002060030160009054906101000a900460ff166006600086815260200190815260200160002060020160006101000a81548160ff021916908315150217905550336001600160a01b0316876001600160a01b03167f242732fca01031d9527a13da4ce5300b6a91221762fb09130d882bb2fb3776958689858a8b4201604051808681526020018561ffff1661ffff1681526020018481526020018381526020018281526020019550505050505060405180910390a3509195945050505050565b60075481565b60008311801561237f5750600082115b801561239a5750336000908152600b60205260409020548311155b6123a357600080fd5b600060023385854360405160200180856001600160a01b03166001600160a01b031660601b81526014018481526020018381526020018281526020019450505050506040516020818303038152906040526040518082805190602001908083835b602083106124235780518252601f199092019160209182019101612404565b51815160209384036101000a60001901801990921691161790526040519190930194509192505080830381855afa158015612462573d6000803e3d6000fd5b5050506040513d602081101561247757600080fd5b505160408051608080820183523380835260208084018a81528486018a815260608087018b815260008a815260088652899020975188546001600160a01b0319166001600160a01b039091161788559251600188015590516002870155905160039095019490945584518a815290810189905280850188905292830152915192935083927fd89e9faf039295fc2c02f1928e7acb13b2aec5fa30a626fbae77862ba17b80d2929181900390910190a250505050565b6000818152600960205260409020600301544210801561256257506000818152600960205260409020546001600160a01b031633145b61256b57600080fd5b6000818152600960205260408082206003018290555182917f38a0d19b45a221cfdc2aa42b006176bae0dd00d6f6ea7ee52420bbe2130d695591a250565b6000838152600660205260409020600301546001600160a01b0316331480156125ea575060008381526006602052604090206005015462010000900460ff16155b6125f357600080fd5b600a8260ff16116126175760018260ff161061260f5781612612565b60015b61261a565b600a5b600084815260066020818152604090922060058101805460ff95909516620100000262ff00001990951694909417909355835161265d93909101918401906149c5565b506000838152600660209081526040918290206002810154600590910154835187815261ffff82169381019390935260ff6201000090910416828401529151339261010090046001600160a01b0316917f7ec723eb9c23b9ef5bfc5d0c883b72ef5436f0e9c8355f5f9ef486f842f84400919081900360600190a3505050565b336000908152600a60205260409020548111156126f957600080fd5b336000908152600a6020526040902054612719908263ffffffff6147ec16565b336000818152600a6020526040808220939093559151909183156108fc02918491818181858888f19350505050158015612757573d6000803e3d6000fd5b50336000818152600a602090815260409182902054825193845290830184905282820152517ffd68f27313402be52d2f46b6d391b7b8657000a3062853a4be930f1281072a019181900360600190a150565b600660208181526000928352604092839020805460018083015460028085015460038601546004870154600588015499880180548c516101009882161589026000190190911695909504601f81018b90048b0286018b01909c528b8552969a949960ff8085169a979094046001600160a01b0390811699931697919661ffff821696620100009092049094169492938301828280156128895780601f1061285e57610100808354040283529160200191612889565b820191906000526020600020905b81548152906001019060200180831161286c57829003601f168201915b5050505050905089565b6000546001600160a01b031633146128df576040805162461bcd60e51b815260206004820152600a60248201526937b7363c9037bbb732b960b11b604482015290519081900360640190fd5b6001600160a01b03166000908152601160205260409020805460ff19169055565b6000546001600160a01b0316331461294c576040805162461bcd60e51b815260206004820152600a60248201526937b7363c9037bbb732b960b11b604482015290519081900360640190fd5b600755565b6000546001600160a01b0316331461299d576040805162461bcd60e51b815260206004820152600a60248201526937b7363c9037bbb732b960b11b604482015290519081900360640190fd5b3360009081526004602052604090205460ff166129f2576040805162461bcd60e51b815260206004820152600e60248201526d1b9bdd081c9959da5cdd195c995960921b604482015290519081900360640190fd5b6001600160a01b03909116600090815260046020526040902080549115156101000261ff0019909216919091179055565b6000546001600160a01b03163314612a6f576040805162461bcd60e51b815260206004820152600a60248201526937b7363c9037bbb732b960b11b604482015290519081900360640190fd5b6001600160a01b03166000908152601160205260409020805460ff19166001179055565b3360009081526004602052604090205460ff16612ae8576040805162461bcd60e51b815260206004820152600e60248201526d1b9bdd081c9959da5cdd195c995960921b604482015290519081900360640190fd5b60015461ffff600160a01b909104811690861610612b0557600080fd5b33600090815260056020908152604080832061ffff98909816835296905294909420805493151560ff199485161781556003810180549315159390941692909217909255600181019190915560020155565b6005602090815260009283526040808420909152908252902080546001820154600283015460039093015460ff9283169391921684565b600c5467ffffffffffffffff83811691161415612be4576040805162461bcd60e51b815260206004820152600f60248201526e63757272656e74206e6574776f726b60881b604482015290519081900360640190fd5b67ffffffffffffffff82166000908152600f602052604090205460ff16612c45576040805162461bcd60e51b815260206004820152601060248201526f1cddd85c081b9bdd08185b1b1bddd95960821b604482015290519081900360640190fd5b600d548310158015612c595750600e548311155b612c98576040805162461bcd60e51b815260206004820152600b60248201526a77726f6e672076616c756560a81b604482015290519081900360640190fd5b600154604080516323b872dd60e01b81523360048201523060248201526044810186905290516001600160a01b03909216916323b872dd916064808201926020929091908290030181600087803b158015612cf257600080fd5b505af1158015612d06573d6000803e3d6000fd5b505050506040513d6020811015612d1c57600080fd5b5051612d64576040805162461bcd60e51b8152602060048201526012602482015271696e63726561736520616c6c6f77616e636560701b604482015290519081900360640190fd5b6040805184815267ffffffffffffffff8416602082015280820183905290516001600160a01b0386169133917ffce127096b7d03c093e140f94dd36ada34f04493a7985f5ec4ee82953671fbbf9181900360600190a350505050565b3360009081526004602052604090205460ff16612e15576040805162461bcd60e51b815260206004820152600e60248201526d1b9bdd081c9959da5cdd195c995960921b604482015290519081900360640190fd5b33600090815260036020908152604080832085845282529091208251612e3d928401906149c5565b505050565b3360009081526004602052604090205460ff161580612e75575033600090815260046020526040902054610100900460ff165b612ebb576040805162461bcd60e51b8152602060048201526012602482015271185b1c9958591e481c9959da5cdd195c995960721b604482015290519081900360640190fd5b600754600154604080516370a0823160e01b815233600482015290516001600160a01b03909216916370a0823191602480820192602092909190829003018186803b158015612f0957600080fd5b505afa158015612f1d573d6000803e3d6000fd5b505050506040513d6020811015612f3357600080fd5b50511015612f4057600080fd5b3360009081526004602052604090205460ff16612f7d57336000908152600460205260409020805461ff001960ff19909116600117166101001790555b336000908152600460209081526040909120805471ffffffffffffffffffffffffffffffff00001916620100006fffffffffffffffffffffffffffffffff600f8f810b8216929092029290921783556001830180546fffffffffffffffffffffffffffffffff1916918e900b9092161790558951613003926002909201918b01906149c5565b50336000908152600460208181526040909220895161302a939190920191908a01906149c5565b503360009081526004602090815260409091208751613051926003909201918901906149c5565b503360009081526004602090815260409091208651613078926005909201918801906149c5565b50336000908152600460209081526040909120855161309f926006909201918701906149c5565b5082156130e95733600090815260056020908152604080832083805290915281208054600160ff199182168117835560038301805490921681179091556002820192909255018390555b811561313057336000908152600560209081526040808320600180855292528220805460ff1990811683178255600382018054909116831790556002810192909255018290555b8015613179573360009081526005602090815260408083206002808552925282208054600160ff1991821681178355600383018054909216811790915591810192909255018190555b88600f0b8a600f0b336001600160a01b03167f4358612de1db3fac41bf308f1e8453877e9201e32ddac447293c953f09f8f1df8b8b8b8b8b60405180806020018060200180602001806020018060200186810386528b818151815260200191508051906020019080838360005b838110156131fe5781810151838201526020016131e6565b50505050905090810190601f16801561322b5780820380516001836020036101000a031916815260200191505b5086810385528a5181528a516020918201918c019080838360005b8381101561325e578181015183820152602001613246565b50505050905090810190601f16801561328b5780820380516001836020036101000a031916815260200191505b5086810384528951815289516020918201918b019080838360005b838110156132be5781810151838201526020016132a6565b50505050905090810190601f1680156132eb5780820380516001836020036101000a031916815260200191505b5086810383528851815288516020918201918a019080838360005b8381101561331e578181015183820152602001613306565b50505050905090810190601f16801561334b5780820380516001836020036101000a031916815260200191505b50868103825287518152875160209182019189019080838360005b8381101561337e578181015183820152602001613366565b50505050905090810190601f1680156133ab5780820380516001836020036101000a031916815260200191505b509a505050505050505050505060405180910390a450505050505050505050565b600d5481565b6000818152600860205260409020600301544210801561340857506000818152600860205260409020546001600160a01b031633145b61341157600080fd5b6000818152600860205260408082206003018290555182917f93435e95cf48edd190f1db3db5e688dd39443ad1bf8d550d5ed7e72e58163aba91a250565b6000546001600160a01b0316331461349b576040805162461bcd60e51b815260206004820152600a60248201526937b7363c9037bbb732b960b11b604482015290519081900360640190fd5b600154600160a01b900461ffff16600090815260026020908152604090912082516134c8928401906149c5565b50506001805461ffff600160a01b808304821684019091160261ffff60a01b19909116179055565b6000546001600160a01b031681565b600c5467ffffffffffffffff1681565b6000546001600160a01b0316331461355b576040805162461bcd60e51b815260206004820152600a60248201526937b7363c9037bbb732b960b11b604482015290519081900360640190fd5b6000811161359e576040805162461bcd60e51b815260206004820152600b60248201526a77726f6e672076616c756560a81b604482015290519081900360640190fd5b600e55565b6000546001600160a01b031633146135ef576040805162461bcd60e51b815260206004820152600a60248201526937b7363c9037bbb732b960b11b604482015290519081900360640190fd5b60008111613632576040805162461bcd60e51b815260206004820152600b60248201526a77726f6e672076616c756560a81b604482015290519081900360640190fd5b600d55565b60003411801561365857506000818152600860205260409020600301544211155b80156136855750600081815260086020526040902060020154613681903463ffffffff6147ec16565b5060015b61368e57600080fd5b60008181526008602052604081206002015434141561370a57506000818152600860209081526040808320600181015490546001600160a01b03168452600b909252909120546136e4908263ffffffff6147ec16565b5060008281526008602052604081206001810182905560028101829055600301556137f3565b600082815260086020526040902060028101546001909101546137389190611c52903463ffffffff61482e16565b6000838152600860209081526040808320546001600160a01b03168352600b909152902054909150613770908263ffffffff6147ec16565b50600082815260086020526040902060010154613793908263ffffffff6147ec16565b506000828152600860205260409020600101546137b6908263ffffffff6147ec16565b60008381526008602052604090206001810191909155600201546137e0903463ffffffff6147ec16565b6000838152600860205260409020600201555b6000828152600860209081526040808320546001600160a01b03168352600a909152902054613828903463ffffffff61478916565b600083815260086020908152604080832080546001600160a01b039081168552600a845282852095909555549093168252600b9052205461386f908263ffffffff6147ec16565b6000838152600860209081526040808320546001600160a01b039081168452600b835281842094909455600154815163a9059cbb60e01b815233600482015260248101879052915194169363a9059cbb93604480840194938390030190829087803b1580156138dd57600080fd5b505af11580156138f1573d6000803e3d6000fd5b505050506040513d602081101561390757600080fd5b505161391257600080fd5b60008281526008602090815260409182902060018101546002909101548351918252918101919091523381830152905183917fe7b7cd2a58abb5403f3c8e07b31ddbe5a0a595c21d2a9f5f60885ee4c84ca2f4919081900360600190a25050565b6000546001600160a01b031633146139bf576040805162461bcd60e51b815260206004820152600a60248201526937b7363c9037bbb732b960b11b604482015290519081900360640190fd5b67ffffffffffffffff82166000908152600f60209081526040909120805460ff191685151517815582516139fb926001909201918401906149c5565b50505050565b600f602090815260009182526040918290208054600180830180548651600261010094831615949094026000190190911692909204601f810186900486028301860190965285825260ff909216949293909290830182828015613aa55780601f10613a7a57610100808354040283529160200191613aa5565b820191906000526020600020905b815481529060010190602001808311613a8857829003601f168201915b5050505050905082565b6000828152600960205260409020546001600160a01b0316331415613b09576040805162461bcd60e51b815260206004820152600b60248201526a37b93232b91037bbb732b960a91b604482015290519081900360640190fd5b600081118015613b2a57506000828152600960205260409020600301544211155b8015613b575750600082815260096020526040902060020154613b53908263ffffffff6147ec16565b5060015b613b6057600080fd5b600082815260096020526040812060020154821415613bdc57506000828152600960209081526040808320600181015490546001600160a01b03168452600a90925290912054613bb6908263ffffffff6147ec16565b506000838152600960205260408120600181018290556002810182905560030155613cc5565b60008381526009602052604090206002810154600190910154613c0a9190611c52908563ffffffff61482e16565b6000848152600960209081526040808320546001600160a01b03168352600a909152902054909150613c42908263ffffffff6147ec16565b50600083815260096020526040902060010154613c65908263ffffffff6147ec16565b50600083815260096020526040902060010154613c88908263ffffffff6147ec16565b6000848152600960205260409020600181019190915560020154613cb2908363ffffffff6147ec16565b6000848152600960205260409020600201555b6000838152600960209081526040808320546001600160a01b03168352600a909152902054613cfa908263ffffffff6147ec16565b600084815260096020818152604080842080546001600160a01b039081168652600a8452828620969096556001548986529383525481516323b872dd60e01b8152336004820152908616602482015260448101889052905192909416936323b872dd93606480830194928390030190829087803b158015613d7a57600080fd5b505af1158015613d8e573d6000803e3d6000fd5b505050506040513d6020811015613da457600080fd5b5051613daf57600080fd5b604051339082156108fc029083906000818181858888f19350505050158015613ddc573d6000803e3d6000fd5b5060008381526009602090815260409182902060018101546002909101548351918252918101919091523381830152905184917fa09da31f0dedf4f47ea2c75c2b8ea5a79dcaba97b19def8b20dee51b858299ce919081900360600190a2505050565b60046020908152600091825260409182902080546001808301546002808501805488516101009582161586026000190190911692909204601f810188900488028301880190985287825260ff80861698948604169662010000909504600f90810b9693900b9492939192909190830182828015613efd5780601f10613ed257610100808354040283529160200191613efd565b820191906000526020600020905b815481529060010190602001808311613ee057829003601f168201915b5050505060038301805460408051602060026001851615610100026000190190941693909304601f8101849004840282018401909252818152949594935090830182828015613f8d5780601f10613f6257610100808354040283529160200191613f8d565b820191906000526020600020905b815481529060010190602001808311613f7057829003601f168201915b5050505060048301805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815294959493509083018282801561401d5780601f10613ff25761010080835404028352916020019161401d565b820191906000526020600020905b81548152906001019060200180831161400057829003601f168201915b5050505060058301805460408051602060026001851615610100026000190190941693909304601f81018490048402820184019092528181529495949350908301828280156140ad5780601f10614082576101008083540402835291602001916140ad565b820191906000526020600020905b81548152906001019060200180831161409057829003601f168201915b5050505060068301805460408051602060026001851615610100026000190190941693909304601f81018490048402820184019092528181529495949350908301828280156128895780601f1061285e57610100808354040283529160200191612889565b600a6020526000908152604090205481565b600e5481565b60008311801561413a5750600082115b80156141555750336000908152600a60205260409020548311155b61415e57600080fd5b600060023385854360405160200180856001600160a01b03166001600160a01b031660601b81526014018481526020018381526020018281526020019450505050506040516020818303038152906040526040518082805190602001908083835b602083106141de5780518252601f1990920191602091820191016141bf565b51815160209384036101000a60001901801990921691161790526040519190930194509192505080830381855afa15801561421d573d6000803e3d6000fd5b5050506040513d602081101561423257600080fd5b505160408051608080820183523380835260208084018a81528486018a815260608087018b815260008a815260098652899020975188546001600160a01b0319166001600160a01b039091161788559251600188015590516002870155905160039095019490945584518a815290810189905280850188905292830152915192935083927fbb9a49b3eaad9d44fab2b413310c966abfc78aa799ac78c63344a7b6f044699e929181900390910190a250505050565b612e3d33848484612b8e565b60106020526000908152604090205460ff1681565b60036020908152600092835260408084208252918352918190208054825160026001831615610100026000190190921691909104601f81018590048502820185019093528281529290919083018282801561156a5780601f1061153f5761010080835404028352916020019161156a565b60086020526000908152604090208054600182015460028301546003909301546001600160a01b0390921692909184565b3360009081526011602052604090205460ff16614400576040805162461bcd60e51b815260206004820152600f60248201526e6f6e6c792076616c696461746f727360881b604482015290519081900360640190fd5b60008481526010602052604090205460ff1615614458576040805162461bcd60e51b8152602060048201526011602482015270185b1c9958591e481d985b1a59185d1959607a1b604482015290519081900360640190fd5b600154604080516370a0823160e01b8152306004820152905184926001600160a01b0316916370a08231916024808301926020929190829003018186803b1580156144a257600080fd5b505afa1580156144b6573d6000803e3d6000fd5b505050506040513d60208110156144cc57600080fd5b50511015614516576040805162461bcd60e51b81526020600482015260126024820152716c6f77206272696467652062616c616e636560701b604482015290519081900360640190fd5b6001546040805163a9059cbb60e01b81526001600160a01b038681166004830152602482018690529151919092169163a9059cbb9160448083019260209291908290030181600087803b15801561456c57600080fd5b505af1158015614580573d6000803e3d6000fd5b505050506040513d602081101561459657600080fd5b505080156145cf57336000908152600b60205260409020546145be908263ffffffff61478916565b336000908152600b60205260409020555b600084815260106020908152604091829020805460ff19166001179055815184815291516001600160a01b0386169287927f5d055511d7e4022440c8e910e60ab31f4deeeb5a6de996beef688e13651b87ad92918290030190a350505050565b60008111801561464e5750336000908152600b60205260409020548111155b61465757600080fd5b336000908152600b6020526040902054614677908263ffffffff6147ec16565b336000818152600b6020908152604080832094909455600154845163a9059cbb60e01b815260048101949094526024840186905293516001600160a01b039094169363a9059cbb93604480820194918390030190829087803b1580156146dc57600080fd5b505af11580156146f0573d6000803e3d6000fd5b505050506040513d602081101561470657600080fd5b505161471157600080fd5b336000818152600b602090815260409182902054825193845290830184905282820152517fa2ab4f32baffd257640c6e28efe7de7bf5b4c6040f39865a5a56691ca08e34ed9181900360600190a150565b600b6020526000908152604090205481565b60116020526000908152604090205460ff1681565b6000828201838110156147e3576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b90505b92915050565b60006147e383836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506148c9565b60008261483d575060006147e6565b8282028284828161484a57fe5b04146147e35760405162461bcd60e51b8152600401808060200182810382526021815260200180614a616021913960400191505060405180910390fd5b60006147e383836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250614960565b600081848411156149585760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561491d578181015183820152602001614905565b50505050905090810190601f16801561494a5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600081836149af5760405162461bcd60e51b815260206004820181815283516024840152835190928392604490910191908501908083836000831561491d578181015183820152602001614905565b5060008385816149bb57fe5b0495945050505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10614a0657805160ff1916838001178555614a33565b82800160010185558215614a33579182015b82811115614a33578251825591602001919060010190614a18565b50614a3f929150614a43565b5090565b614a5d91905b80821115614a3f5760008155600101614a49565b9056fe536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f77a265627a7a723158200e2fe42a2ac3f99fa7fd348e6f043cbbe50556e074ea3a847d3dc9513b0aaea464736f6c63430005110032000000000000000000000000c4a86561cb0b7ea1214904f26e6d50fd357c79860000000000000000000000000000000000000000000000000000000000000001
Deployed Bytecode
0x60806040526004361061027c5760003560e01c80637be1bf181161014f578063d3d1fb48116100c1578063eeba014c1161007a578063eeba014c1461132c578063efe6bfa314611365578063f645e00a1461138f578063f9f95a0f146113d4578063fabde80c146113fe578063facd743b146114315761027c565b8063d3d1fb4814610fbd578063d8f3790f14611230578063d9c6913614611263578063e176713114611278578063e24f9650146112ae578063eb84e7f2146112ee5761027c565b80639631fb3c116101135780639631fb3c14610dc657806398ea5fca1461027c5780639c9a106114610df0578063a5a657b414610e0d578063ada8bcdc14610ed6578063b592de3a14610f8d5761027c565b80637be1bf1814610c5e57806388fcd19414610c885780638da5cb5b14610d395780639025e64c14610d6a578063939d1e9614610d9c5761027c565b80633bed33ce116101f35780634dc238a6116101ac5780634dc238a6146107ac5780635a6c858c146107f65780635bd92d9c1461085d5780635e14a2f7146108ac57806364dc69111461096457806366b39fc314610c495761027c565b80633bed33ce146105bf5780633e3ac461146105e957806340a141ff146106e157806347e4b7be146107145780634827f1d21461073e5780634d238c8e146107795761027c565b806313af40351161024557806313af403514610403578063178706b514610436578063223a30751461048a57806328c662a61461049f5780633a168c82146104d55780633a5c2ccf146104ff5761027c565b8062dd69f014610286578063041d40c11461032957806307d2f5db1461038357806309642cf0146103ad5780630bf08787146103d7575b610284611464565b005b34801561029257600080fd5b506102b4600480360360208110156102a957600080fd5b503561ffff166114d9565b6040805160208082528351818301528351919283929083019185019080838360005b838110156102ee5781810151838201526020016102d6565b50505050905090810190601f16801561031b5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561033557600080fd5b506103536004803603602081101561034c57600080fd5b5035611572565b604080516001600160a01b0390951685526020850193909352838301919091526060830152519081900360800190f35b34801561038f57600080fd5b50610284600480360360208110156103a657600080fd5b50356115a3565b3480156103b957600080fd5b50610284600480360360208110156103d057600080fd5b50356117d4565b3480156103e357600080fd5b506103ec6118e5565b6040805161ffff9092168252519081900360200190f35b34801561040f57600080fd5b506102846004803603602081101561042657600080fd5b50356001600160a01b03166118f6565b610478600480360360a081101561044c57600080fd5b506001600160a01b038135169061ffff6020820135169060408101359060608101359060800135611964565b60408051918252519081900360200190f35b34801561049657600080fd5b50610478612369565b3480156104ab57600080fd5b50610284600480360360608110156104c257600080fd5b508035906020810135906040013561236f565b3480156104e157600080fd5b50610284600480360360208110156104f857600080fd5b503561252c565b34801561050b57600080fd5b506102846004803603606081101561052257600080fd5b81359160ff60208201351691810190606081016040820135600160201b81111561054b57600080fd5b82018360208201111561055d57600080fd5b803590602001918460018302840111600160201b8311171561057e57600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295506125a9945050505050565b3480156105cb57600080fd5b50610284600480360360208110156105e257600080fd5b50356126dd565b3480156105f557600080fd5b506106136004803603602081101561060c57600080fd5b50356127a9565b604080518a815260208082018b9052891515928201929092526001600160a01b0380891660608301528716608082015260a0810186905261ffff851660c082015260ff841660e0820152610120610100820181815284519183019190915283519192909161014084019185019080838360005b8381101561069e578181015183820152602001610686565b50505050905090810190601f1680156106cb5780820380516001836020036101000a031916815260200191505b509a505050505050505050505060405180910390f35b3480156106ed57600080fd5b506102846004803603602081101561070457600080fd5b50356001600160a01b0316612893565b34801561072057600080fd5b506102846004803603602081101561073757600080fd5b5035612900565b34801561074a57600080fd5b506102846004803603604081101561076157600080fd5b506001600160a01b0381351690602001351515612951565b34801561078557600080fd5b506102846004803603602081101561079c57600080fd5b50356001600160a01b0316612a23565b3480156107b857600080fd5b50610284600480360360a08110156107cf57600080fd5b5061ffff813516906020810135151590604081013515159060608101359060800135612a93565b34801561080257600080fd5b506108336004803603604081101561081957600080fd5b5080356001600160a01b0316906020013561ffff16612b57565b60408051941515855260208501939093528383019190915215156060830152519081900360800190f35b34801561086957600080fd5b506102846004803603608081101561088057600080fd5b506001600160a01b038135169060208101359067ffffffffffffffff6040820135169060600135612b8e565b3480156108b857600080fd5b50610284600480360360408110156108cf57600080fd5b81359190810190604081016020820135600160201b8111156108f057600080fd5b82018360208201111561090257600080fd5b803590602001918460018302840111600160201b8311171561092357600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550612dc0945050505050565b34801561097057600080fd5b50610284600480360361014081101561098857600080fd5b8135600f90810b92602081013590910b91810190606081016040820135600160201b8111156109b657600080fd5b8201836020820111156109c857600080fd5b803590602001918460018302840111600160201b831117156109e957600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295949360208101935035915050600160201b811115610a3b57600080fd5b820183602082011115610a4d57600080fd5b803590602001918460018302840111600160201b83111715610a6e57600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295949360208101935035915050600160201b811115610ac057600080fd5b820183602082011115610ad257600080fd5b803590602001918460018302840111600160201b83111715610af357600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295949360208101935035915050600160201b811115610b4557600080fd5b820183602082011115610b5757600080fd5b803590602001918460018302840111600160201b83111715610b7857600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295949360208101935035915050600160201b811115610bca57600080fd5b820183602082011115610bdc57600080fd5b803590602001918460018302840111600160201b83111715610bfd57600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295505082359350505060208101359060400135612e42565b348015610c5557600080fd5b506104786133cc565b348015610c6a57600080fd5b5061028460048036036020811015610c8157600080fd5b50356133d2565b348015610c9457600080fd5b5061028460048036036020811015610cab57600080fd5b810190602081018135600160201b811115610cc557600080fd5b820183602082011115610cd757600080fd5b803590602001918460018302840111600160201b83111715610cf857600080fd5b91908080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525092955061344f945050505050565b348015610d4557600080fd5b50610d4e6134f0565b604080516001600160a01b039092168252519081900360200190f35b348015610d7657600080fd5b50610d7f6134ff565b6040805167ffffffffffffffff9092168252519081900360200190f35b348015610da857600080fd5b5061028460048036036020811015610dbf57600080fd5b503561350f565b348015610dd257600080fd5b5061028460048036036020811015610de957600080fd5b50356135a3565b61028460048036036020811015610e0657600080fd5b5035613637565b348015610e1957600080fd5b5061028460048036036060811015610e3057600080fd5b813515159167ffffffffffffffff60208201351691810190606081016040820135600160201b811115610e6257600080fd5b820183602082011115610e7457600080fd5b803590602001918460018302840111600160201b83111715610e9557600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550613973945050505050565b348015610ee257600080fd5b50610f0a60048036036020811015610ef957600080fd5b503567ffffffffffffffff16613a01565b604051808315151515815260200180602001828103825283818151815260200191508051906020019080838360005b83811015610f51578181015183820152602001610f39565b50505050905090810190601f168015610f7e5780820380516001836020036101000a031916815260200191505b50935050505060405180910390f35b348015610f9957600080fd5b5061028460048036036040811015610fb057600080fd5b5080359060200135613aaf565b348015610fc957600080fd5b50610ff060048036036020811015610fe057600080fd5b50356001600160a01b0316613e3f565b604051808a1515151581526020018915151515815260200188600f0b600f0b815260200187600f0b600f0b8152602001806020018060200180602001806020018060200186810386528b818151815260200191508051906020019080838360005b83811015611069578181015183820152602001611051565b50505050905090810190601f1680156110965780820380516001836020036101000a031916815260200191505b5086810385528a5181528a516020918201918c019080838360005b838110156110c95781810151838201526020016110b1565b50505050905090810190601f1680156110f65780820380516001836020036101000a031916815260200191505b5086810384528951815289516020918201918b019080838360005b83811015611129578181015183820152602001611111565b50505050905090810190601f1680156111565780820380516001836020036101000a031916815260200191505b5086810383528851815288516020918201918a019080838360005b83811015611189578181015183820152602001611171565b50505050905090810190601f1680156111b65780820380516001836020036101000a031916815260200191505b50868103825287518152875160209182019189019080838360005b838110156111e95781810151838201526020016111d1565b50505050905090810190601f1680156112165780820380516001836020036101000a031916815260200191505b509e50505050505050505050505050505060405180910390f35b34801561123c57600080fd5b506104786004803603602081101561125357600080fd5b50356001600160a01b0316614112565b34801561126f57600080fd5b50610478614124565b34801561128457600080fd5b506102846004803603606081101561129b57600080fd5b508035906020810135906040013561412a565b3480156112ba57600080fd5b50610284600480360360608110156112d157600080fd5b5080359067ffffffffffffffff60208201351690604001356142e7565b3480156112fa57600080fd5b506113186004803603602081101561131157600080fd5b50356142f3565b604080519115158252519081900360200190f35b34801561133857600080fd5b506102b46004803603604081101561134f57600080fd5b506001600160a01b038135169060200135614308565b34801561137157600080fd5b506103536004803603602081101561138857600080fd5b5035614379565b34801561139b57600080fd5b50610284600480360360808110156113b257600080fd5b508035906001600160a01b0360208201351690604081013590606001356143aa565b3480156113e057600080fd5b50610284600480360360208110156113f757600080fd5b503561462f565b34801561140a57600080fd5b506104786004803603602081101561142157600080fd5b50356001600160a01b0316614762565b34801561143d57600080fd5b506113186004803603602081101561145457600080fd5b50356001600160a01b0316614774565b336000908152600a6020526040902054611484903463ffffffff61478916565b336000818152600a6020908152604091829020849055815192835234908301528181019290925290517f20d6bac8359f33d79581bfd2b0457cb189fda6d90fed287ddc9f2ba3eb124b679181900360600190a1565b600260208181526000928352604092839020805484516001821615610100026000190190911693909304601f810183900483028401830190945283835291929083018282801561156a5780601f1061153f5761010080835404028352916020019161156a565b820191906000526020600020905b81548152906001019060200180831161154d57829003601f168201915b505050505081565b60096020526000908152604090208054600182015460028301546003909301546001600160a01b0390921692909184565b600081815260066020526040902054158015906115d1575060008181526006602052604090206002015460ff165b80156115ed575060008181526006602052604090206001015442105b801561161257506000818152600660205260409020600301546001600160a01b031633145b61161b57600080fd5b60008181526006602052604081206001015461163d904263ffffffff6147ec16565b6000838152600660205260408120600401549192509061166490839063ffffffff61482e16565b60008481526006602090815260408083204260018201556002015461010090046001600160a01b03168352600b9091529020549091506116a490826147ec565b6000848152600660209081526040808320600201546001600160a01b0361010090910481168452600b835281842094909455600154815163a9059cbb60e01b815233600482015260248101879052915194169363a9059cbb93604480840194938390030190829087803b15801561171a57600080fd5b505af115801561172e573d6000803e3d6000fd5b505050506040513d602081101561174457600080fd5b505161174f57600080fd5b6000838152600660209081526040918290206002810154600590910154835187815261ffff90911692810192909252818301849052606082018590524260808301529151339261010090046001600160a01b0316917f5926c04550435944a3cff7b8d7e66ec761c5b42702f9cd25448b08b329d6146a919081900360a00190a3505050565b6000811180156118665750600154604080516323b872dd60e01b81523360048201523060248201526044810184905290516001600160a01b03909216916323b872dd916064808201926020929091908290030181600087803b15801561183957600080fd5b505af115801561184d573d6000803e3d6000fd5b505050506040513d602081101561186357600080fd5b50515b61186f57600080fd5b336000908152600b602052604090205461188f908263ffffffff61478916565b336000818152600b6020908152604091829020849055815192835282018490528181019290925290517f0e19e58d9dd9657044b18cacb159b832c52df06379f08a911c8b0f519530f0d79181900360600190a150565b600154600160a01b900461ffff1681565b6000546001600160a01b03163314611942576040805162461bcd60e51b815260206004820152600a60248201526937b7363c9037bbb732b960b11b604482015290519081900360640190fd5b600080546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b038516600090815260046020526040812054610100900460ff168015611a0b5750600754600154604080516370a0823160e01b81526001600160a01b038a81166004830152915191909216916370a08231916024808301926020929190829003018186803b1580156119dc57600080fd5b505afa1580156119f0573d6000803e3d6000fd5b505050506040513d6020811015611a0657600080fd5b505110155b8015611a3e57506001600160a01b038616600090815260056020908152604080832061ffff8916845290915290205460ff165b611a7d576040805162461bcd60e51b815260206004820152600b60248201526a1b9bdd08185b1b1bddd95960aa1b604482015290519081900360640190fd5b82611ac757604080513360601b6020808301919091524260348301526001600160f01b031960f089901b166054830152825160368184030181526056909201909252805191012092505b60008381526006602052604090205415611b19576040805162461bcd60e51b815260206004820152600e60248201526d1c185e5b595b9d081cd95c9d995960921b604482015290519081900360640190fd5b60003415611fb3576000838152600860205260409020600301544211801590611b635750600083815260086020526040902060020154611b5f903463ffffffff6147ec16565b5060015b611ba8576040805162461bcd60e51b81526020600482015260116024820152706c6f77206f726465722062616c616e636560781b604482015290519081900360640190fd5b600083815260086020526040902060020154341415611c2457506000828152600860209081526040808320600181015490546001600160a01b03168452600b90925290912054611bfe908263ffffffff6147ec16565b506000838152600860205260408120600181018290556002810182905560030155611d19565b60008381526008602052604090206002810154600190910154611c5e9190611c52903463ffffffff61482e16565b9063ffffffff61488716565b6000848152600860209081526040808320546001600160a01b03168352600b909152902054909150611c96908263ffffffff6147ec16565b50600083815260086020526040902060010154611cb9908263ffffffff6147ec16565b50600083815260086020526040902060010154611cdc908263ffffffff6147ec16565b6000848152600860205260409020600181019190915560020154611d06903463ffffffff6147ec16565b6000848152600860205260409020600201555b6001600160a01b038716600090815260056020908152604080832061ffff8a168452909152902060010154611d5590829063ffffffff61488716565b6001600160a01b038816600090815260056020908152604080832061ffff8b16845290915290206002015490955085111580611db957506001600160a01b038716600090815260056020908152604080832061ffff8a168452909152902060020154155b611df7576040805162461bcd60e51b815260206004820152600a60248201526977726f6e672074696d6560b01b604482015290519081900360640190fd5b6000838152600860209081526040808320546001600160a01b03168352600b909152902054611e2c908263ffffffff6147ec16565b600084815260086020908152604080832080546001600160a01b039081168552600b845282852095909555549093168252600a90522054611e73903463ffffffff61478916565b6000848152600860209081526040808320546001600160a01b039081168452600a835281842094909455600154815163a9059cbb60e01b81528c8616600482015260248101879052915194169363a9059cbb93604480840194938390030190829087803b158015611ee357600080fd5b505af1158015611ef7573d6000803e3d6000fd5b505050506040513d6020811015611f0d57600080fd5b5051611f51576040805162461bcd60e51b815260206004820152600e60248201526d3a3930b739b332b91032b93937b960911b604482015290519081900360640190fd5b60008381526008602090815260409182902060018101546002909101548351918252918101919091523381830152905184917fe7b7cd2a58abb5403f3c8e07b31ddbe5a0a595c21d2a9f5f60885ee4c84ca2f4919081900360600190a2612132565b6001600160a01b038716600090815260056020908152604080832061ffff8a1684529091529020600201548511158061201457506001600160a01b038716600090815260056020908152604080832061ffff8a168452909152902060020154155b61201d57600080fd5b6001600160a01b038716600090815260056020908152604080832061ffff8a16845290915290206001015461205990869063ffffffff61482e16565b90506000811161206857600080fd5b600154604080516323b872dd60e01b81523360048201526001600160a01b038a8116602483015260448201859052915191909216916323b872dd9160648083019260209291908290030181600087803b1580156120c457600080fd5b505af11580156120d8573d6000803e3d6000fd5b505050506040513d60208110156120ee57600080fd5b5051612132576040805162461bcd60e51b815260206004820152600e60248201526d3a3930b739b332b91032b93937b960911b604482015290519081900360640190fd5b866006600086815260200190815260200160002060020160016101000a8154816001600160a01b0302191690836001600160a01b03160217905550336006600086815260200190815260200160002060030160006101000a8154816001600160a01b0302191690836001600160a01b0316021790555060056000886001600160a01b03166001600160a01b0316815260200190815260200160002060008761ffff1661ffff168152602001908152602001600020600101546006600086815260200190815260200160002060040181905550856006600086815260200190815260200160002060050160006101000a81548161ffff021916908361ffff160217905550426006600086815260200190815260200160002060000181905550844201600660008681526020019081526020016000206001018190555060056000886001600160a01b03166001600160a01b0316815260200190815260200160002060008761ffff1661ffff16815260200190815260200160002060030160009054906101000a900460ff166006600086815260200190815260200160002060020160006101000a81548160ff021916908315150217905550336001600160a01b0316876001600160a01b03167f242732fca01031d9527a13da4ce5300b6a91221762fb09130d882bb2fb3776958689858a8b4201604051808681526020018561ffff1661ffff1681526020018481526020018381526020018281526020019550505050505060405180910390a3509195945050505050565b60075481565b60008311801561237f5750600082115b801561239a5750336000908152600b60205260409020548311155b6123a357600080fd5b600060023385854360405160200180856001600160a01b03166001600160a01b031660601b81526014018481526020018381526020018281526020019450505050506040516020818303038152906040526040518082805190602001908083835b602083106124235780518252601f199092019160209182019101612404565b51815160209384036101000a60001901801990921691161790526040519190930194509192505080830381855afa158015612462573d6000803e3d6000fd5b5050506040513d602081101561247757600080fd5b505160408051608080820183523380835260208084018a81528486018a815260608087018b815260008a815260088652899020975188546001600160a01b0319166001600160a01b039091161788559251600188015590516002870155905160039095019490945584518a815290810189905280850188905292830152915192935083927fd89e9faf039295fc2c02f1928e7acb13b2aec5fa30a626fbae77862ba17b80d2929181900390910190a250505050565b6000818152600960205260409020600301544210801561256257506000818152600960205260409020546001600160a01b031633145b61256b57600080fd5b6000818152600960205260408082206003018290555182917f38a0d19b45a221cfdc2aa42b006176bae0dd00d6f6ea7ee52420bbe2130d695591a250565b6000838152600660205260409020600301546001600160a01b0316331480156125ea575060008381526006602052604090206005015462010000900460ff16155b6125f357600080fd5b600a8260ff16116126175760018260ff161061260f5781612612565b60015b61261a565b600a5b600084815260066020818152604090922060058101805460ff95909516620100000262ff00001990951694909417909355835161265d93909101918401906149c5565b506000838152600660209081526040918290206002810154600590910154835187815261ffff82169381019390935260ff6201000090910416828401529151339261010090046001600160a01b0316917f7ec723eb9c23b9ef5bfc5d0c883b72ef5436f0e9c8355f5f9ef486f842f84400919081900360600190a3505050565b336000908152600a60205260409020548111156126f957600080fd5b336000908152600a6020526040902054612719908263ffffffff6147ec16565b336000818152600a6020526040808220939093559151909183156108fc02918491818181858888f19350505050158015612757573d6000803e3d6000fd5b50336000818152600a602090815260409182902054825193845290830184905282820152517ffd68f27313402be52d2f46b6d391b7b8657000a3062853a4be930f1281072a019181900360600190a150565b600660208181526000928352604092839020805460018083015460028085015460038601546004870154600588015499880180548c516101009882161589026000190190911695909504601f81018b90048b0286018b01909c528b8552969a949960ff8085169a979094046001600160a01b0390811699931697919661ffff821696620100009092049094169492938301828280156128895780601f1061285e57610100808354040283529160200191612889565b820191906000526020600020905b81548152906001019060200180831161286c57829003601f168201915b5050505050905089565b6000546001600160a01b031633146128df576040805162461bcd60e51b815260206004820152600a60248201526937b7363c9037bbb732b960b11b604482015290519081900360640190fd5b6001600160a01b03166000908152601160205260409020805460ff19169055565b6000546001600160a01b0316331461294c576040805162461bcd60e51b815260206004820152600a60248201526937b7363c9037bbb732b960b11b604482015290519081900360640190fd5b600755565b6000546001600160a01b0316331461299d576040805162461bcd60e51b815260206004820152600a60248201526937b7363c9037bbb732b960b11b604482015290519081900360640190fd5b3360009081526004602052604090205460ff166129f2576040805162461bcd60e51b815260206004820152600e60248201526d1b9bdd081c9959da5cdd195c995960921b604482015290519081900360640190fd5b6001600160a01b03909116600090815260046020526040902080549115156101000261ff0019909216919091179055565b6000546001600160a01b03163314612a6f576040805162461bcd60e51b815260206004820152600a60248201526937b7363c9037bbb732b960b11b604482015290519081900360640190fd5b6001600160a01b03166000908152601160205260409020805460ff19166001179055565b3360009081526004602052604090205460ff16612ae8576040805162461bcd60e51b815260206004820152600e60248201526d1b9bdd081c9959da5cdd195c995960921b604482015290519081900360640190fd5b60015461ffff600160a01b909104811690861610612b0557600080fd5b33600090815260056020908152604080832061ffff98909816835296905294909420805493151560ff199485161781556003810180549315159390941692909217909255600181019190915560020155565b6005602090815260009283526040808420909152908252902080546001820154600283015460039093015460ff9283169391921684565b600c5467ffffffffffffffff83811691161415612be4576040805162461bcd60e51b815260206004820152600f60248201526e63757272656e74206e6574776f726b60881b604482015290519081900360640190fd5b67ffffffffffffffff82166000908152600f602052604090205460ff16612c45576040805162461bcd60e51b815260206004820152601060248201526f1cddd85c081b9bdd08185b1b1bddd95960821b604482015290519081900360640190fd5b600d548310158015612c595750600e548311155b612c98576040805162461bcd60e51b815260206004820152600b60248201526a77726f6e672076616c756560a81b604482015290519081900360640190fd5b600154604080516323b872dd60e01b81523360048201523060248201526044810186905290516001600160a01b03909216916323b872dd916064808201926020929091908290030181600087803b158015612cf257600080fd5b505af1158015612d06573d6000803e3d6000fd5b505050506040513d6020811015612d1c57600080fd5b5051612d64576040805162461bcd60e51b8152602060048201526012602482015271696e63726561736520616c6c6f77616e636560701b604482015290519081900360640190fd5b6040805184815267ffffffffffffffff8416602082015280820183905290516001600160a01b0386169133917ffce127096b7d03c093e140f94dd36ada34f04493a7985f5ec4ee82953671fbbf9181900360600190a350505050565b3360009081526004602052604090205460ff16612e15576040805162461bcd60e51b815260206004820152600e60248201526d1b9bdd081c9959da5cdd195c995960921b604482015290519081900360640190fd5b33600090815260036020908152604080832085845282529091208251612e3d928401906149c5565b505050565b3360009081526004602052604090205460ff161580612e75575033600090815260046020526040902054610100900460ff165b612ebb576040805162461bcd60e51b8152602060048201526012602482015271185b1c9958591e481c9959da5cdd195c995960721b604482015290519081900360640190fd5b600754600154604080516370a0823160e01b815233600482015290516001600160a01b03909216916370a0823191602480820192602092909190829003018186803b158015612f0957600080fd5b505afa158015612f1d573d6000803e3d6000fd5b505050506040513d6020811015612f3357600080fd5b50511015612f4057600080fd5b3360009081526004602052604090205460ff16612f7d57336000908152600460205260409020805461ff001960ff19909116600117166101001790555b336000908152600460209081526040909120805471ffffffffffffffffffffffffffffffff00001916620100006fffffffffffffffffffffffffffffffff600f8f810b8216929092029290921783556001830180546fffffffffffffffffffffffffffffffff1916918e900b9092161790558951613003926002909201918b01906149c5565b50336000908152600460208181526040909220895161302a939190920191908a01906149c5565b503360009081526004602090815260409091208751613051926003909201918901906149c5565b503360009081526004602090815260409091208651613078926005909201918801906149c5565b50336000908152600460209081526040909120855161309f926006909201918701906149c5565b5082156130e95733600090815260056020908152604080832083805290915281208054600160ff199182168117835560038301805490921681179091556002820192909255018390555b811561313057336000908152600560209081526040808320600180855292528220805460ff1990811683178255600382018054909116831790556002810192909255018290555b8015613179573360009081526005602090815260408083206002808552925282208054600160ff1991821681178355600383018054909216811790915591810192909255018190555b88600f0b8a600f0b336001600160a01b03167f4358612de1db3fac41bf308f1e8453877e9201e32ddac447293c953f09f8f1df8b8b8b8b8b60405180806020018060200180602001806020018060200186810386528b818151815260200191508051906020019080838360005b838110156131fe5781810151838201526020016131e6565b50505050905090810190601f16801561322b5780820380516001836020036101000a031916815260200191505b5086810385528a5181528a516020918201918c019080838360005b8381101561325e578181015183820152602001613246565b50505050905090810190601f16801561328b5780820380516001836020036101000a031916815260200191505b5086810384528951815289516020918201918b019080838360005b838110156132be5781810151838201526020016132a6565b50505050905090810190601f1680156132eb5780820380516001836020036101000a031916815260200191505b5086810383528851815288516020918201918a019080838360005b8381101561331e578181015183820152602001613306565b50505050905090810190601f16801561334b5780820380516001836020036101000a031916815260200191505b50868103825287518152875160209182019189019080838360005b8381101561337e578181015183820152602001613366565b50505050905090810190601f1680156133ab5780820380516001836020036101000a031916815260200191505b509a505050505050505050505060405180910390a450505050505050505050565b600d5481565b6000818152600860205260409020600301544210801561340857506000818152600860205260409020546001600160a01b031633145b61341157600080fd5b6000818152600860205260408082206003018290555182917f93435e95cf48edd190f1db3db5e688dd39443ad1bf8d550d5ed7e72e58163aba91a250565b6000546001600160a01b0316331461349b576040805162461bcd60e51b815260206004820152600a60248201526937b7363c9037bbb732b960b11b604482015290519081900360640190fd5b600154600160a01b900461ffff16600090815260026020908152604090912082516134c8928401906149c5565b50506001805461ffff600160a01b808304821684019091160261ffff60a01b19909116179055565b6000546001600160a01b031681565b600c5467ffffffffffffffff1681565b6000546001600160a01b0316331461355b576040805162461bcd60e51b815260206004820152600a60248201526937b7363c9037bbb732b960b11b604482015290519081900360640190fd5b6000811161359e576040805162461bcd60e51b815260206004820152600b60248201526a77726f6e672076616c756560a81b604482015290519081900360640190fd5b600e55565b6000546001600160a01b031633146135ef576040805162461bcd60e51b815260206004820152600a60248201526937b7363c9037bbb732b960b11b604482015290519081900360640190fd5b60008111613632576040805162461bcd60e51b815260206004820152600b60248201526a77726f6e672076616c756560a81b604482015290519081900360640190fd5b600d55565b60003411801561365857506000818152600860205260409020600301544211155b80156136855750600081815260086020526040902060020154613681903463ffffffff6147ec16565b5060015b61368e57600080fd5b60008181526008602052604081206002015434141561370a57506000818152600860209081526040808320600181015490546001600160a01b03168452600b909252909120546136e4908263ffffffff6147ec16565b5060008281526008602052604081206001810182905560028101829055600301556137f3565b600082815260086020526040902060028101546001909101546137389190611c52903463ffffffff61482e16565b6000838152600860209081526040808320546001600160a01b03168352600b909152902054909150613770908263ffffffff6147ec16565b50600082815260086020526040902060010154613793908263ffffffff6147ec16565b506000828152600860205260409020600101546137b6908263ffffffff6147ec16565b60008381526008602052604090206001810191909155600201546137e0903463ffffffff6147ec16565b6000838152600860205260409020600201555b6000828152600860209081526040808320546001600160a01b03168352600a909152902054613828903463ffffffff61478916565b600083815260086020908152604080832080546001600160a01b039081168552600a845282852095909555549093168252600b9052205461386f908263ffffffff6147ec16565b6000838152600860209081526040808320546001600160a01b039081168452600b835281842094909455600154815163a9059cbb60e01b815233600482015260248101879052915194169363a9059cbb93604480840194938390030190829087803b1580156138dd57600080fd5b505af11580156138f1573d6000803e3d6000fd5b505050506040513d602081101561390757600080fd5b505161391257600080fd5b60008281526008602090815260409182902060018101546002909101548351918252918101919091523381830152905183917fe7b7cd2a58abb5403f3c8e07b31ddbe5a0a595c21d2a9f5f60885ee4c84ca2f4919081900360600190a25050565b6000546001600160a01b031633146139bf576040805162461bcd60e51b815260206004820152600a60248201526937b7363c9037bbb732b960b11b604482015290519081900360640190fd5b67ffffffffffffffff82166000908152600f60209081526040909120805460ff191685151517815582516139fb926001909201918401906149c5565b50505050565b600f602090815260009182526040918290208054600180830180548651600261010094831615949094026000190190911692909204601f810186900486028301860190965285825260ff909216949293909290830182828015613aa55780601f10613a7a57610100808354040283529160200191613aa5565b820191906000526020600020905b815481529060010190602001808311613a8857829003601f168201915b5050505050905082565b6000828152600960205260409020546001600160a01b0316331415613b09576040805162461bcd60e51b815260206004820152600b60248201526a37b93232b91037bbb732b960a91b604482015290519081900360640190fd5b600081118015613b2a57506000828152600960205260409020600301544211155b8015613b575750600082815260096020526040902060020154613b53908263ffffffff6147ec16565b5060015b613b6057600080fd5b600082815260096020526040812060020154821415613bdc57506000828152600960209081526040808320600181015490546001600160a01b03168452600a90925290912054613bb6908263ffffffff6147ec16565b506000838152600960205260408120600181018290556002810182905560030155613cc5565b60008381526009602052604090206002810154600190910154613c0a9190611c52908563ffffffff61482e16565b6000848152600960209081526040808320546001600160a01b03168352600a909152902054909150613c42908263ffffffff6147ec16565b50600083815260096020526040902060010154613c65908263ffffffff6147ec16565b50600083815260096020526040902060010154613c88908263ffffffff6147ec16565b6000848152600960205260409020600181019190915560020154613cb2908363ffffffff6147ec16565b6000848152600960205260409020600201555b6000838152600960209081526040808320546001600160a01b03168352600a909152902054613cfa908263ffffffff6147ec16565b600084815260096020818152604080842080546001600160a01b039081168652600a8452828620969096556001548986529383525481516323b872dd60e01b8152336004820152908616602482015260448101889052905192909416936323b872dd93606480830194928390030190829087803b158015613d7a57600080fd5b505af1158015613d8e573d6000803e3d6000fd5b505050506040513d6020811015613da457600080fd5b5051613daf57600080fd5b604051339082156108fc029083906000818181858888f19350505050158015613ddc573d6000803e3d6000fd5b5060008381526009602090815260409182902060018101546002909101548351918252918101919091523381830152905184917fa09da31f0dedf4f47ea2c75c2b8ea5a79dcaba97b19def8b20dee51b858299ce919081900360600190a2505050565b60046020908152600091825260409182902080546001808301546002808501805488516101009582161586026000190190911692909204601f810188900488028301880190985287825260ff80861698948604169662010000909504600f90810b9693900b9492939192909190830182828015613efd5780601f10613ed257610100808354040283529160200191613efd565b820191906000526020600020905b815481529060010190602001808311613ee057829003601f168201915b5050505060038301805460408051602060026001851615610100026000190190941693909304601f8101849004840282018401909252818152949594935090830182828015613f8d5780601f10613f6257610100808354040283529160200191613f8d565b820191906000526020600020905b815481529060010190602001808311613f7057829003601f168201915b5050505060048301805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815294959493509083018282801561401d5780601f10613ff25761010080835404028352916020019161401d565b820191906000526020600020905b81548152906001019060200180831161400057829003601f168201915b5050505060058301805460408051602060026001851615610100026000190190941693909304601f81018490048402820184019092528181529495949350908301828280156140ad5780601f10614082576101008083540402835291602001916140ad565b820191906000526020600020905b81548152906001019060200180831161409057829003601f168201915b5050505060068301805460408051602060026001851615610100026000190190941693909304601f81018490048402820184019092528181529495949350908301828280156128895780601f1061285e57610100808354040283529160200191612889565b600a6020526000908152604090205481565b600e5481565b60008311801561413a5750600082115b80156141555750336000908152600a60205260409020548311155b61415e57600080fd5b600060023385854360405160200180856001600160a01b03166001600160a01b031660601b81526014018481526020018381526020018281526020019450505050506040516020818303038152906040526040518082805190602001908083835b602083106141de5780518252601f1990920191602091820191016141bf565b51815160209384036101000a60001901801990921691161790526040519190930194509192505080830381855afa15801561421d573d6000803e3d6000fd5b5050506040513d602081101561423257600080fd5b505160408051608080820183523380835260208084018a81528486018a815260608087018b815260008a815260098652899020975188546001600160a01b0319166001600160a01b039091161788559251600188015590516002870155905160039095019490945584518a815290810189905280850188905292830152915192935083927fbb9a49b3eaad9d44fab2b413310c966abfc78aa799ac78c63344a7b6f044699e929181900390910190a250505050565b612e3d33848484612b8e565b60106020526000908152604090205460ff1681565b60036020908152600092835260408084208252918352918190208054825160026001831615610100026000190190921691909104601f81018590048502820185019093528281529290919083018282801561156a5780601f1061153f5761010080835404028352916020019161156a565b60086020526000908152604090208054600182015460028301546003909301546001600160a01b0390921692909184565b3360009081526011602052604090205460ff16614400576040805162461bcd60e51b815260206004820152600f60248201526e6f6e6c792076616c696461746f727360881b604482015290519081900360640190fd5b60008481526010602052604090205460ff1615614458576040805162461bcd60e51b8152602060048201526011602482015270185b1c9958591e481d985b1a59185d1959607a1b604482015290519081900360640190fd5b600154604080516370a0823160e01b8152306004820152905184926001600160a01b0316916370a08231916024808301926020929190829003018186803b1580156144a257600080fd5b505afa1580156144b6573d6000803e3d6000fd5b505050506040513d60208110156144cc57600080fd5b50511015614516576040805162461bcd60e51b81526020600482015260126024820152716c6f77206272696467652062616c616e636560701b604482015290519081900360640190fd5b6001546040805163a9059cbb60e01b81526001600160a01b038681166004830152602482018690529151919092169163a9059cbb9160448083019260209291908290030181600087803b15801561456c57600080fd5b505af1158015614580573d6000803e3d6000fd5b505050506040513d602081101561459657600080fd5b505080156145cf57336000908152600b60205260409020546145be908263ffffffff61478916565b336000908152600b60205260409020555b600084815260106020908152604091829020805460ff19166001179055815184815291516001600160a01b0386169287927f5d055511d7e4022440c8e910e60ab31f4deeeb5a6de996beef688e13651b87ad92918290030190a350505050565b60008111801561464e5750336000908152600b60205260409020548111155b61465757600080fd5b336000908152600b6020526040902054614677908263ffffffff6147ec16565b336000818152600b6020908152604080832094909455600154845163a9059cbb60e01b815260048101949094526024840186905293516001600160a01b039094169363a9059cbb93604480820194918390030190829087803b1580156146dc57600080fd5b505af11580156146f0573d6000803e3d6000fd5b505050506040513d602081101561470657600080fd5b505161471157600080fd5b336000818152600b602090815260409182902054825193845290830184905282820152517fa2ab4f32baffd257640c6e28efe7de7bf5b4c6040f39865a5a56691ca08e34ed9181900360600190a150565b600b6020526000908152604090205481565b60116020526000908152604090205460ff1681565b6000828201838110156147e3576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b90505b92915050565b60006147e383836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506148c9565b60008261483d575060006147e6565b8282028284828161484a57fe5b04146147e35760405162461bcd60e51b8152600401808060200182810382526021815260200180614a616021913960400191505060405180910390fd5b60006147e383836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250614960565b600081848411156149585760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561491d578181015183820152602001614905565b50505050905090810190601f16801561494a5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600081836149af5760405162461bcd60e51b815260206004820181815283516024840152835190928392604490910191908501908083836000831561491d578181015183820152602001614905565b5060008385816149bb57fe5b0495945050505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10614a0657805160ff1916838001178555614a33565b82800160010185558215614a33579182015b82811115614a33578251825591602001919060010190614a18565b50614a3f929150614a43565b5090565b614a5d91905b80821115614a3f5760008155600101614a49565b9056fe536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f77a265627a7a723158200e2fe42a2ac3f99fa7fd348e6f043cbbe50556e074ea3a847d3dc9513b0aaea464736f6c63430005110032
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000c4a86561cb0b7ea1214904f26e6d50fd357c79860000000000000000000000000000000000000000000000000000000000000001
-----Decoded View---------------
Arg [0] : _tokenAddress (address): 0xC4A86561cb0b7EA1214904f26E6D50FD357C7986
Arg [1] : _networkId (uint64): 1
-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 000000000000000000000000c4a86561cb0b7ea1214904f26e6d50fd357c7986
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000001
Deployed Bytecode Sourcemap
19737:21173:0:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24940:14;:12;:14::i;:::-;19737:21173;20810:42;;8:9:-1;5:2;;;30:1;27;20:12;5:2;20810:42:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;20810:42: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;20810:42:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21617:43;;8:9:-1;5:2;;;30:1;27;20:12;5:2;21617:43:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;21617:43:0;;:::i;:::-;;;;-1:-1:-1;;;;;21617:43:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39349:793;;8:9:-1;5:2;;;30:1;27;20:12;5:2;39349:793:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;39349:793:0;;:::i;31195:269::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;31195:269:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;31195:269:0;;:::i;20774:31::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;20774:31:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;24967:139;;8:9:-1;5:2;;;30:1;27;20:12;5:2;24967:139:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;24967:139:0;-1:-1:-1;;;;;24967:139:0;;:::i;36026:3242::-;;;;;;13:3:-1;8;5:12;2:2;;;30:1;27;20:12;2:2;-1:-1;;;;;;36026:3242:0;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;21358:44;;8:9:-1;5:2;;;30:1;27;20:12;5:2;21358:44:0;;;:::i;32185:411::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;32185:411:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;32185:411:0;;;;;;;;;;;;:::i;32601:218::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;32601:218:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;32601:218:0;;:::i;40357:550::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;40357:550:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;40357:550:0;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;5:28;;2:2;;;46:1;43;36:12;2:2;40357:550:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;40357:550:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;-1:-1;;;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;40357:550:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;40357:550:0;;-1:-1:-1;40357:550:0;;-1:-1:-1;;;;;40357:550:0:i;30933:257::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;30933:257:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;30933:257:0;;:::i;21187:56::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;21187:56:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;21187:56:0;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;21187:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-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;21187:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29062:154;;8:9:-1;5:2;;;30:1;27;20:12;5:2;29062:154:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;29062:154:0;-1:-1:-1;;;;;29062:154:0;;:::i;28375:141::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;28375:141:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;28375:141:0;;:::i;28048:266::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;28048:266:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;28048:266:0;;;;;;;;;;:::i;28907:150::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;28907:150:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;28907:150:0;-1:-1:-1;;;;;28907:150:0;;:::i;27511:485::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;27511:485:0;;;;;;13:3:-1;8;5:12;2:2;;;30:1;27;20:12;2:2;-1:-1;27511:485:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;21074:71::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;21074:71:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;21074:71:0;;-1:-1:-1;;;;;21074:71:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29499:490;;8:9:-1;5:2;;;30:1;27;20:12;5:2;29499:490:0;;;;;;13:3:-1;8;5:12;2:2;;;30:1;27;20:12;2:2;-1:-1;;;;;;29499:490:0;;;;;;;;;;;;;;;;;;;;:::i;27228:240::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;27228:240:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;27228:240:0;;;;;;;;;;;;;;-1:-1:-1;;;5:28;;2:2;;;46:1;43;36:12;2:2;27228:240:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;27228:240:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;-1:-1;;;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;27228:240:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;27228:240:0;;-1:-1:-1;27228:240:0;;-1:-1:-1;;;;;27228:240:0:i;25369:1812::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;25369:1812:0;;;;;;13:3:-1;8;5:12;2:2;;;30:1;27;20:12;2:2;25369:1812:0;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;5:28;;2:2;;;46:1;43;36:12;2:2;25369:1812:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;25369:1812:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;-1:-1;;;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;25369:1812:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;25369:1812:0;;;;;;;;-1:-1:-1;25369:1812:0;;-1:-1:-1;;;;;5:28;;2:2;;;46:1;43;36:12;2:2;25369:1812:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;25369:1812:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;-1:-1;;;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;25369:1812:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;25369:1812:0;;;;;;;;-1:-1:-1;25369:1812:0;;-1:-1:-1;;;;;5:28;;2:2;;;46:1;43;36:12;2:2;25369:1812:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;25369:1812:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;-1:-1;;;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;25369:1812:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;25369:1812:0;;;;;;;;-1:-1:-1;25369:1812:0;;-1:-1:-1;;;;;5:28;;2:2;;;46:1;43;36:12;2:2;25369:1812:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;25369:1812:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;-1:-1;;;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;25369:1812:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;25369:1812:0;;;;;;;;-1:-1:-1;25369:1812:0;;-1:-1:-1;;;;;5:28;;2:2;;;46:1;43;36:12;2:2;25369:1812:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;25369:1812:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;-1:-1;;;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;25369:1812:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;25369:1812:0;;-1:-1:-1;;25369:1812:0;;;-1:-1:-1;;;25369:1812:0;;;;;;;;;:::i;23362:42::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;23362:42:0;;;:::i;32826:223::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;32826:223:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;32826:223:0;;:::i;25166:162::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;25166:162:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;25166:162:0;;;;;;;;-1:-1:-1;;;5:28;;2:2;;;46:1;43;36:12;2:2;25166:162:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;25166:162:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;-1:-1;;;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;25166:162:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;25166:162:0;;-1:-1:-1;25166:162:0;;-1:-1:-1;;;;;25166:162:0:i;19802:28::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;19802:28:0;;;:::i;:::-;;;;-1:-1:-1;;;;;19802:28:0;;;;;;;;;;;;;;23313:23;;8:9:-1;5:2;;;30:1;27;20:12;5:2;23313:23:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;28714:188;;8:9:-1;5:2;;;30:1;27;20:12;5:2;28714:188:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;28714:188:0;;:::i;28521:::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;28521:188:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;28521:188:0;;:::i;33054:1291::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;33054:1291:0;;:::i;29257:234::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;29257:234:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;29257:234:0;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;5:28;;2:2;;;46:1;43;36:12;2:2;29257:234:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;29257:234:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;-1:-1;;;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;29257:234:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;29257:234:0;;-1:-1:-1;29257:234:0;;-1:-1:-1;;;;;29257:234:0:i;23617:39::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;23617:39:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;23617:39:0;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;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;23617:39:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34352:1316;;8:9:-1;5:2;;;30:1;27;20:12;5:2;34352:1316:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;34352:1316:0;;;;;;;:::i;21013:52::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;21013:52:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;21013:52:0;-1:-1:-1;;;;;21013:52:0;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;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;21013:52:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;21013:52:0;;;;;;;;;;;;;;;;;;;;;;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;21013:52:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;21013:52:0;;;;;;;;;;;;;;;;;;;;;;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;21013:52:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;21013:52:0;;;;;;;;;;;;;;;;;;;;;;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;21013:52:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;21013:52:0;;;;;;;;;;;;;;;;;;;;;;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;21013:52:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21694:43;;8:9:-1;5:2;;;30:1;27;20:12;5:2;21694:43:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;21694:43:0;-1:-1:-1;;;;;21694:43:0;;:::i;23449:46::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;23449:46:0;;;:::i;31773:407::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;31773:407:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;31773:407:0;;;;;;;;;;;;:::i;29997:155::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;29997:155:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;29997:155:0;;;;;;;;;;;;;;:::i;23687:38::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;23687:38:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;23687:38:0;;:::i;:::-;;;;;;;;;;;;;;;;;;20892:70;;8:9:-1;5:2;;;30:1;27;20:12;5:2;20892:70:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;20892:70:0;;;;;;;;:::i;21569:44::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;21569:44:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;21569:44:0;;:::i;30204:539::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;30204:539:0;;;;;;13:3:-1;8;5:12;2:2;;;30:1;27;20:12;2:2;-1:-1;30204:539:0;;;-1:-1:-1;;;;;30204:539:0;;;;;;;;;;;;;;;:::i;31469:299::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;31469:299:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;31469:299:0;;:::i;21741:44::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;21741:44:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;21741:44:0;-1:-1:-1;;;;;21741:44:0;;:::i;23734:::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;23734:44:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;23734:44:0;-1:-1:-1;;;;;23734:44:0;;:::i;30748:180::-;30828:10;30817:22;;;;:10;:22;;;;;;:37;;30844:9;30817:37;:26;:37;:::i;:::-;30803:10;30792:22;;;;:10;:22;;;;;;;;;:62;;;30864:59;;;;;30889:9;30864:59;;;;;;;;;;;;;;;;;;;;;;30748:180::o;20810:42::-;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;20810:42:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;21617:43::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;21617:43:0;;;;;;;:::o;39349:793::-;39452:1;39414:27;;;:14;:27;;;;;:35;:39;;;;:101;;-1:-1:-1;39479:27:0;;;;:14;:27;;;;;:36;;;;;39414:101;:153;;;;-1:-1:-1;39531:27:0;;;;:14;:27;;;;;:36;;;39525:3;:42;39414:153;:211;;;;-1:-1:-1;39578:27:0;;;;:14;:27;;;;;:33;;;-1:-1:-1;;;;;39578:33:0;39615:10;39578:47;39414:211;39406:220;;;;;;39633:9;39645:27;;;:14;:27;;;;;:36;;;:45;;39686:3;39645:45;:40;:45;:::i;:::-;39695:14;39721:27;;;:14;:27;;;;;:39;;;39633:57;;-1:-1:-1;39695:14:0;39712:49;;39633:57;;39712:49;:8;:49;:::i;:::-;39772:27;;;;:14;:27;;;;;;;;39811:3;39772:36;;;:42;39887:32;;;;;;-1:-1:-1;;;;;39887:32:0;39875:45;;:11;:45;;;;;;39695:66;;-1:-1:-1;39875:60:0;;39695:66;39875:49;:60::i;:::-;39827:45;39839:27;;;:14;:27;;;;;;;;:32;;;-1:-1:-1;;;;;39839:32:0;;;;;;39827:45;;:11;:45;;;;;:108;;;;39839:32;39948:13;:45;;-1:-1:-1;;;39948:45:0;;39971:10;39948:45;;;;;;;;;;;;:13;;;:22;;:45;;;;;39839:27;39948:45;;;;;;;:13;:45;;;5:2:-1;;;;30:1;27;20:12;5:2;39948:45:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;39948:45:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;39948:45:0;39940:54;;;;;;40018:27;;;;:14;:27;;;;;;;;;:32;;;;40077:37;;;;;40006:131;;;;;40077:37;;;;40006:131;;;;;;;;;;;;;;;;;;;40133:3;40006:131;;;;;;40052:10;;40018:32;;;-1:-1:-1;;;;;40018:32:0;;40006:131;;;;;;;;;;39349:793;;;:::o;31195:269::-;31259:1;31250:6;:10;:75;;;;-1:-1:-1;31264:13:0;;:61;;;-1:-1:-1;;;31264:61:0;;31291:10;31264:61;;;;31311:4;31264:61;;;;;;;;;;;;-1:-1:-1;;;;;31264:13:0;;;;:26;;:61;;;;;;;;;;;;;;;:13;;:61;;;5:2:-1;;;;30:1;27;20:12;5:2;31264:61:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;31264:61:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;31264:61:0;31250:75;31242:84;;;;;;31369:10;31357:23;;;;:11;:23;;;;;;:35;;31385:6;31357:35;:27;:35;:::i;:::-;31343:10;31331:23;;;;:11;:23;;;;;;;;;:61;;;31402:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;31195:269;:::o;20774:31::-;;;-1:-1:-1;;;20774:31:0;;;;;:::o;24967:139::-;25051:5;;-1:-1:-1;;;;;25051:5:0;25037:10;:19;25029:42;;;;;-1:-1:-1;;;25029:42:0;;;;;;;;;;;;-1:-1:-1;;;25029:42:0;;;;;;;;;;;;;;;25082:5;:16;;-1:-1:-1;;;;;;25082:16:0;-1:-1:-1;;;;;25082:16:0;;;;;;;;;;24967:139::o;36026:3242::-;-1:-1:-1;;;;;36182:25:0;;36156:7;36182:25;;;:15;:25;;;;;:36;;;;;;:149;;;;-1:-1:-1;36315:15:0;;36278:13;;:33;;;-1:-1:-1;;;36278:33:0;;-1:-1:-1;;;;;36278:33:0;;;;;;;;;:13;;;;;:23;;:33;;;;;;;;;;;;;;:13;:33;;;5:2:-1;;;;30:1;27;20:12;5:2;36278:33:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;36278:33:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;36278:33:0;:52;;36182:149;:229;;;;-1:-1:-1;;;;;;36371:21:0;;;;;;:11;:21;;;;;;;;:32;;;;;;;;;;:40;;;36182:229;36172:255;;;;;-1:-1:-1;;;36172:255:0;;;;;;;;;;;;-1:-1:-1;;;36172:255:0;;;;;;;;;;;;;;;36472:16;36468:95;;36518:44;;;36535:10;36518:44;;;;;;;;;;36547:3;36518:44;;;;-1:-1:-1;;;;;;36518:44:0;;;;;;;;;;;22:32:-1;26:21;;;22:32;6:49;;36518:44:0;;;;;;;36508:55;;;;;;-1:-1:-1;36468:95:0;36579:27;;;;:14;:27;;;;;:35;:40;36570:68;;;;;-1:-1:-1;;;36570:68:0;;;;;;;;;;;;-1:-1:-1;;;36570:68:0;;;;;;;;;;;;;;;36651:14;36674:9;:13;36670:1974;;36762:21;;;;:10;:21;;;;;:28;;;36755:3;:35;;;;:90;;-1:-1:-1;36799:21:0;;;;:10;:21;;;;;:31;;;:46;;36835:9;36799:46;:35;:46;:::i;:::-;-1:-1:-1;36794:51:0;36755:90;36747:120;;;;;-1:-1:-1;;;36747:120:0;;;;;;;;;;;;-1:-1:-1;;;36747:120:0;;;;;;;;;;;;;;;36890:21;;;;:10;:21;;;;;:31;;;36877:9;:44;36873:788;;;-1:-1:-1;36942:21:0;;;;:10;:21;;;;;;;;:32;;;;37009:26;;-1:-1:-1;;;;;37009:26:0;36997:39;;:11;:39;;;;;;;:54;;36942:32;36997:54;:43;:54;:::i;:::-;-1:-1:-1;37116:1:0;37081:21;;;:10;:21;;;;;:32;;;:36;;;37125:31;;;:35;;;37168:28;;:32;36873:788;;;37285:21;;;;:10;:21;;;;;:31;;;;37233:32;;;;;:84;;37285:31;37233:47;;37270:9;37233:47;:36;:47;:::i;:::-;:51;:84;:51;:84;:::i;:::-;37337:39;37349:21;;;:10;:21;;;;;;;;:26;-1:-1:-1;;;;;37349:26:0;37337:39;;:11;:39;;;;;;37221:96;;-1:-1:-1;37337:54:0;;37221:96;37337:54;:43;:54;:::i;:::-;-1:-1:-1;37400:21:0;;;;:10;:21;;;;;:32;;;:47;;37437:9;37400:47;:36;:47;:::i;:::-;-1:-1:-1;37518:21:0;;;;:10;:21;;;;;:32;;;:47;;37555:9;37518:47;:36;:47;:::i;:::-;37483:21;;;;:10;:21;;;;;:32;;;:82;;;;37607:31;;;:46;;37643:9;37607:46;:35;:46;:::i;:::-;37573:21;;;;:10;:21;;;;;:31;;:80;36873:788;-1:-1:-1;;;;;37728:21:0;;;;;;:11;:21;;;;;;;;:32;;;;;;;;;;:37;;;37714:52;;:9;;:52;:13;:52;:::i;:::-;-1:-1:-1;;;;;37790:21:0;;;;;;:11;:21;;;;;;;;:32;;;;;;;;;;:40;;;37707:59;;-1:-1:-1;37782:48:0;;;;:97;;-1:-1:-1;;;;;;37834:21:0;;;;;;:11;:21;;;;;;;;:32;;;;;;;;;;:40;;;:45;37782:97;37772:122;;;;;-1:-1:-1;;;37772:122:0;;;;;;;;;;;;-1:-1:-1;;;37772:122:0;;;;;;;;;;;;;;;37944:39;37956:21;;;:10;:21;;;;;;;;:26;-1:-1:-1;;;;;37956:26:0;37944:39;;:11;:39;;;;;;:54;;37988:9;37944:54;:43;:54;:::i;:::-;37902:39;37914:21;;;:10;:21;;;;;;;;:26;;-1:-1:-1;;;;;37914:26:0;;;37902:39;;:11;:39;;;;;:96;;;;38056:26;;;;38045:38;;:10;:38;;;;:53;;38088:9;38045:53;:42;:53;:::i;:::-;38004:38;38015:21;;;:10;:21;;;;;;;;:26;-1:-1:-1;;;;;38015:26:0;;;38004:38;;:10;:38;;;;;:94;;;;38015:26;38121:13;:43;;-1:-1:-1;;;38121:43:0;;;;;;;;;;;;;;;;;:13;;;:22;;:43;;;;;38015:21;38121:43;;;;;;;:13;:43;;;5:2:-1;;;;30:1;27;20:12;5:2;38121:43:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;38121:43:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;38121:43:0;38113:70;;;;;-1:-1:-1;;;38113:70:0;;;;;;;;;;;;-1:-1:-1;;;38113:70:0;;;;;;;;;;;;;;;38214:21;;;;:10;:21;;;;;;;;;:32;;;;38248:31;;;;;38199:93;;;;;;;;;;;;38281:10;38199:93;;;;;;38203:9;;38199:93;;;;;;;;;;36670:1974;;;-1:-1:-1;;;;;38360:21:0;;;;;;:11;:21;;;;;;;;:32;;;;;;;;;;:40;;;38352:48;;;;:97;;-1:-1:-1;;;;;;38404:21:0;;;;;;:11;:21;;;;;;;;:32;;;;;;;;;;:40;;;:45;38352:97;38342:108;;;;;;-1:-1:-1;;;;;38477:21:0;;;;;;:11;:21;;;;;;;;:32;;;;;;;;;;:37;;;38468:47;;:4;;:47;:8;:47;:::i;:::-;38456:59;;38542:1;38530:9;:13;38521:24;;;;;;38560:13;;:59;;;-1:-1:-1;;;38560:59:0;;38587:10;38560:59;;;;-1:-1:-1;;;;;38560:59:0;;;;;;;;;;;;;;;:13;;;;;:26;;:59;;;;;;;;;;;;;;:13;;:59;;;5:2:-1;;;;30:1;27;20:12;5:2;38560:59:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;38560:59:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;38560:59:0;38551:87;;;;;-1:-1:-1;;;38551:87:0;;;;;;;;;;;;-1:-1:-1;;;38551:87:0;;;;;;;;;;;;;;;38689:8;38654:14;:27;38669:11;38654:27;;;;;;;;;;;:32;;;:43;;;;;-1:-1:-1;;;;;38654:43:0;;;;;-1:-1:-1;;;;;38654:43:0;;;;;;38745:10;38709:14;:27;38724:11;38709:27;;;;;;;;;;;:33;;;:46;;;;;-1:-1:-1;;;;;38709:46:0;;;;;-1:-1:-1;;;;;38709:46:0;;;;;;38845:11;:21;38857:8;-1:-1:-1;;;;;38845:21:0;-1:-1:-1;;;;;38845:21:0;;;;;;;;;;;;:32;38867:9;38845:32;;;;;;;;;;;;;;;:37;;;38803:14;:27;38818:11;38803:27;;;;;;;;;;;:39;;:79;;;;38933:9;38893:14;:27;38908:11;38893:27;;;;;;;;;;;:37;;;:49;;;;;;;;;;;;;;;;;;38991:3;38953:14;:27;38968:11;38953:27;;;;;;;;;;;:35;;:41;;;;39050:4;39044:3;:10;39005:14;:27;39020:11;39005:27;;;;;;;;;;;:36;;:49;;;;39104:11;:21;39116:8;-1:-1:-1;;;;;39104:21:0;-1:-1:-1;;;;;39104:21:0;;;;;;;;;;;;:32;39126:9;39104:32;;;;;;;;;;;;;;;:41;;;;;;;;;;;;39065:14;:27;39080:11;39065:27;;;;;;;;;;;:36;;;:80;;;;;;;;;;;;;;;;;;39176:10;-1:-1:-1;;;;;39155:85:0;39166:8;-1:-1:-1;;;;;39155:85:0;;39188:11;39201:9;39212;39223:4;39235;39229:3;:10;39155:85;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39252:11:0;;36026:3242;-1:-1:-1;;;;;36026:3242:0:o;21358:44::-;;;;:::o;32185:411::-;32283:1;32270:10;:14;:31;;;;;32300:1;32288:9;:13;32270:31;:72;;;;-1:-1:-1;32331:10:0;32319:23;;;;:11;:23;;;;;;32305:37;;;32270:72;32262:81;;;;;;32348:17;32368:73;32392:10;32404;32416:9;32427:12;32375:65;;;;;;-1:-1:-1;;;;;32375:65:0;-1:-1:-1;;;;;32375:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49:4:-1;39:7;30;26:21;22:32;13:7;6:49;32375:65:0;;;32368:73;;;;;;;;;;;;;36:153:-1;66:2;61:3;58:11;36:153;;176:10;;164:23;;-1:-1;;139:12;;;;98:2;89:12;;;;114;36:153;;;299:10;344;;263:2;259:12;;;254:3;250:22;-1:-1;;246:30;311:9;;295:26;;;340:21;;377:20;365:33;;32368:73:0;;;;;;;-1:-1:-1;263:2;;-1:-1;;32368:73:0;;;;;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;32368:73:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;32368:73:0;32470:48;;;;;;;;;32476:10;32470:48;;;32368:73;32470:48;;;;;;;;;;;;;;;;;;;-1:-1:-1;32446:21:0;;;:10;:21;;;;;:72;;;;-1:-1:-1;;;;;;32446:72:0;-1:-1:-1;;;;;32446:72:0;;;;;;;;-1:-1:-1;32446:72:0;;;;;;;;;;;;;;;;;;;32528:63;;;;;;;;;;;;;;;;;;;;;;;32368:73;;-1:-1:-1;32368:73:0;;32528:63;;;;;;;;;;;32185:411;;;;:::o;32601:218::-;32665:20;;;;:9;:20;;;;;:27;;;32695:3;-1:-1:-1;32665:76:0;;;;-1:-1:-1;32702:20:0;;;;:9;:20;;;;;:25;-1:-1:-1;;;;;32702:25:0;32731:10;32702:39;32665:76;32656:86;;;;;;32777:1;32747:20;;;:9;:20;;;;;;:27;;:31;;;32789:25;32757:9;;32789:25;;;32601:218;:::o;40357:550::-;40470:27;;;;:14;:27;;;;;:33;;;-1:-1:-1;;;;;40470:33:0;40507:10;40470:47;:96;;;;-1:-1:-1;40521:27:0;;;;:14;:27;;;;;:40;;;;;;;;:45;40470:96;40462:105;;;;;;40632:2;40617:12;:17;;;:62;;40658:1;40643:12;:16;;;:35;;40666:12;40643:35;;;40662:1;40643:35;40617:62;;;40637:2;40617:62;40574:27;;;;:14;:27;;;;;;;;:40;;;:105;;;;;;;;;-1:-1:-1;;40574:105:0;;;;;;;;;;40684:55;;;;:40;;;;:55;;;;:::i;:::-;-1:-1:-1;40763:27:0;;;;:14;:27;;;;;;;;;:32;;;;40822:37;;;;;40753:149;;;;;40822:37;;;40753:149;;;;;;;40861:40;;;;;;40753:149;;;;;;40797:10;;40763:32;;;-1:-1:-1;;;;;40763:32:0;;40753:149;;;;;;;;;;40357:550;;;:::o;30933:257::-;31000:10;30989:22;;;;:10;:22;;;;;;:32;-1:-1:-1;30989:32:0;30981:41;;;;;;31063:10;31052:22;;;;:10;:22;;;;;;:34;;31079:6;31052:34;:26;:34;:::i;:::-;31038:10;31027:22;;;;:10;:22;;;;;;:59;;;;31091:27;;31038:10;;31091:27;;;;;31111:6;;31091:27;31027:22;31091:27;31111:6;31038:10;31091:27;;;;;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;-1:-1;31142:10:0;31162:22;;;;:10;:22;;;;;;;;;;31128:57;;;;;;;;;;;;;;;;;;;;;;;;;30933:257;:::o;21187:56::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;21187:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;21187:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;29062:154::-;29149:5;;-1:-1:-1;;;;;29149:5:0;29135:10;:19;29127:42;;;;;-1:-1:-1;;;29127:42:0;;;;;;;;;;;;-1:-1:-1;;;29127:42:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;29180:23:0;29206:5;29180:23;;;:11;:23;;;;;:31;;-1:-1:-1;;29180:31:0;;;29062:154::o;28375:141::-;28459:5;;-1:-1:-1;;;;;28459:5:0;28445:10;:19;28437:42;;;;;-1:-1:-1;;;28437:42:0;;;;;;;;;;;;-1:-1:-1;;;28437:42:0;;;;;;;;;;;;;;;28484:15;:27;28375:141::o;28048:266::-;28153:5;;-1:-1:-1;;;;;28153:5:0;28139:10;:19;28131:42;;;;;-1:-1:-1;;;28131:42:0;;;;;;;;;;;;-1:-1:-1;;;28131:42:0;;;;;;;;;;;;;;;28209:10;28193:27;;;;:15;:27;;;;;:38;;;28184:66;;;;;-1:-1:-1;;;28184:66:0;;;;;;;;;;;;-1:-1:-1;;;28184:66:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;28261:21:0;;;;;;;:15;:21;;;;;:45;;;;;;;-1:-1:-1;;28261:45:0;;;;;;;;;28048:266::o;28907:150::-;28991:5;;-1:-1:-1;;;;;28991:5:0;28977:10;:19;28969:42;;;;;-1:-1:-1;;;28969:42:0;;;;;;;;;;;;-1:-1:-1;;;28969:42:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;29022:23:0;;;;;:11;:23;;;;;:30;;-1:-1:-1;;29022:30:0;29048:4;29022:30;;;28907:150::o;27511:485::-;27654:10;27638:27;;;;:15;:27;;;;;:38;;;27629:66;;;;;-1:-1:-1;;;27629:66:0;;;;;;;;;;;;-1:-1:-1;;;27629:66:0;;;;;;;;;;;;;;;27727:13;;;-1:-1:-1;;;27727:13:0;;;;;27715:25;;;;27706:35;;;;;;27766:10;27754:23;;;;:11;:23;;;;;;;;:34;;;;;;;;;;;;;;:52;;;;;-1:-1:-1;;27754:52:0;;;;;;27817:43;;;:54;;;;;;;;;;;;;;;;-1:-1:-1;27882:39:0;;:46;;;;-1:-1:-1;27939:42:0;:52;27511:485::o;21074:71::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;29499:490::-;29628:9;;;29614:23;;;29628:9;;29614:23;;29606:51;;;;;-1:-1:-1;;;29606:51:0;;;;;;;;;;;;-1:-1:-1;;;29606:51:0;;;;;;;;;;;;;;;29676:18;;;;;;;:6;:18;;;;;:25;;;29668:54;;;;;-1:-1:-1;;;29668:54:0;;;;;;;;;;;;-1:-1:-1;;;29668:54:0;;;;;;;;;;;;;;;29751:14;;29741:6;:24;;:52;;;;;29779:14;;29769:6;:24;;29741:52;29733:76;;;;;-1:-1:-1;;;29733:76:0;;;;;;;;;;;;-1:-1:-1;;;29733:76:0;;;;;;;;;;;;;;;29828:13;;:61;;;-1:-1:-1;;;29828:61:0;;29855:10;29828:61;;;;29875:4;29828:61;;;;;;;;;;;;-1:-1:-1;;;;;29828:13:0;;;;:26;;:61;;;;;;;;;;;;;;;:13;;:61;;;5:2:-1;;;;30:1;27;20:12;5:2;29828:61:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;29828:61:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;29828:61:0;29820:92;;;;;-1:-1:-1;;;29820:92:0;;;;;;;;;;;;-1:-1:-1;;;29820:92:0;;;;;;;;;;;;;;;29928:53;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;29928:53:0;;;29933:10;;29928:53;;;;;;;;;29499:490;;;;:::o;27228:240::-;27350:10;27334:27;;;;:15;:27;;;;;:38;;;27325:66;;;;;-1:-1:-1;;;27325:66:0;;;;;;;;;;;;-1:-1:-1;;;27325:66:0;;;;;;;;;;;;;;;27417:10;27402:26;;;;:14;:26;;;;;;;;:41;;;;;;;;:58;;;;;;;;:::i;:::-;;27228:240;;:::o;25369:1812::-;25695:10;25679:27;;;;:15;:27;;;;;:38;;;25678:39;;:81;;-1:-1:-1;25737:10:0;25721:27;;;;:15;:27;;;;;:38;;;;;;25678:81;25668:115;;;;;-1:-1:-1;;;25668:115:0;;;;;;;;;;;;-1:-1:-1;;;25668:115:0;;;;;;;;;;;;;;;25878:15;;25839:13;;:35;;;-1:-1:-1;;;25839:35:0;;25863:10;25839:35;;;;;;-1:-1:-1;;;;;25839:13:0;;;;:23;;:35;;;;;;;;;;;;;;;:13;:35;;;5:2:-1;;;;30:1;27;20:12;5:2;25839:35:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;25839:35:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;25839:35:0;:54;;25830:64;;;;;;25922:10;25906:27;;;;:15;:27;;;;;:38;;;25901:153;;25968:10;25952:27;;;;:15;:27;;;;;:45;;-1:-1:-1;;;;25952:45:0;;;25993:4;25952:45;26003;25952;26003;;;25901:153;26076:10;26060:27;;;;:15;:27;;;;;;;;:47;;-1:-1:-1;;26060:47:0;;;;;;;;;;;;;;;;;;;-1:-1:-1;26112:37:0;;:49;;-1:-1:-1;;26112:49:0;;;;;;;;;;;26168:39;;;;26060:36;26168:32;;;;:39;;;;:::i;:::-;-1:-1:-1;26228:10:0;26212:27;;;;:15;:27;;;;;;;;:47;;;;:36;;;;;:47;;;;;:::i;:::-;-1:-1:-1;26280:10:0;26264:27;;;;:15;:27;;;;;;;;:41;;;;:33;;;;;:41;;;;:::i;:::-;-1:-1:-1;26326:10:0;26310:27;;;;:15;:27;;;;;;;;:49;;;;:37;;;;;:49;;;;:::i;:::-;-1:-1:-1;26380:10:0;26364:27;;;;:15;:27;;;;;;;;:41;;;;:33;;;;;:41;;;;:::i;:::-;-1:-1:-1;26422:13:0;;26418:213;;26455:10;26443:23;;;;:11;:23;;;;;;;;:26;;;;;;;;:41;;26480:4;-1:-1:-1;;26443:41:0;;;;;;;26490:35;;;:42;;;;;;;;;;26538:34;;;:38;;;;26582:31;:43;;;26418:213;26647:12;;26643:211;;26679:10;26667:23;;;;:11;:23;;;;;;;;26704:4;26667:26;;;;;;;:41;;-1:-1:-1;;26667:41:0;;;;;;;26714:35;;;:42;;;;;;;;;26762:34;;;:38;;;;26806:31;:42;;;26643:211;26870:12;;26866:211;;26902:10;26890:23;;;;:11;:23;;;;;;;;26914:1;26890:26;;;;;;;:41;;26927:4;-1:-1:-1;;26890:41:0;;;;;;;26937:35;;;:42;;;;;;;;;;26985:34;;;:38;;;;27029:31;:42;;;26866:211;27124:9;27086:90;;27114:8;27086:90;;27102:10;-1:-1:-1;;;;;27086:90:0;;27135:4;27141:8;27151:5;27158:9;27169:5;27086:90;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;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;27086:90:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;27086:90:0;;;;;;;;;;;;;;;;;;;;;;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;27086:90:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;27086:90:0;;;;;;;;;;;;;;;;;;;;;;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;27086:90:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;27086:90:0;;;;;;;;;;;;;;;;;;;;;;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;27086:90:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;27086:90:0;;;;;;;;;;;;;;;;;;;;;;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;27086:90:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25369:1812;;;;;;;;;;:::o;23362:42::-;;;;:::o;32826:223::-;32891:21;;;;:10;:21;;;;;:28;;;32922:3;-1:-1:-1;32891:78:0;;;;-1:-1:-1;32929:21:0;;;;:10;:21;;;;;:26;-1:-1:-1;;;;;32929:26:0;32959:10;32929:40;32891:78;32882:88;;;;;;33006:1;32975:21;;;:10;:21;;;;;;:28;;:32;;;33018:26;32986:9;;33018:26;;;32826:223;:::o;25166:162::-;25248:5;;-1:-1:-1;;;;;25248:5:0;25234:10;:19;25226:42;;;;;-1:-1:-1;;;25226:42:0;;;;;;;;;;;;-1:-1:-1;;;25226:42:0;;;;;;;;;;;;;;;25282:13;;-1:-1:-1;;;25282:13:0;;;;25273:23;;;;:8;:23;;;;;;;;:30;;;;;;;;:::i;:::-;-1:-1:-1;;25308:13:0;:15;;;-1:-1:-1;;;25308:15:0;;;;;;;;;;;-1:-1:-1;;;;25308:15:0;;;;;;25166:162::o;19802:28::-;;;-1:-1:-1;;;;;19802:28:0;;:::o;23313:23::-;;;;;;:::o;28714:188::-;28797:5;;-1:-1:-1;;;;;28797:5:0;28783:10;:19;28775:42;;;;;-1:-1:-1;;;28775:42:0;;;;;;;;;;;;-1:-1:-1;;;28775:42:0;;;;;;;;;;;;;;;28846:1;28837:6;:10;28828:35;;;;;-1:-1:-1;;;28828:35:0;;;;;;;;;;;;-1:-1:-1;;;28828:35:0;;;;;;;;;;;;;;;28874:14;:23;28714:188::o;28521:::-;28604:5;;-1:-1:-1;;;;;28604:5:0;28590:10;:19;28582:42;;;;;-1:-1:-1;;;28582:42:0;;;;;;;;;;;;-1:-1:-1;;;28582:42:0;;;;;;;;;;;;;;;28653:1;28644:6;:10;28635:35;;;;;-1:-1:-1;;;28635:35:0;;;;;;;;;;;;-1:-1:-1;;;28635:35:0;;;;;;;;;;;;;;;28681:14;:23;28521:188::o;33054:1291::-;33126:1;33114:9;:13;:52;;;;-1:-1:-1;33138:21:0;;;;:10;:21;;;;;:28;;;33131:3;:35;;33114:52;:107;;;;-1:-1:-1;33175:21:0;;;;:10;:21;;;;;:31;;;:46;;33211:9;33175:46;:35;:46;:::i;:::-;-1:-1:-1;33170:51:0;33114:107;33106:116;;;;;;33227:14;33272:21;;;:10;:21;;;;;:31;;;33259:9;:44;33255:724;;;-1:-1:-1;33323:21:0;;;;:10;:21;;;;;;;;:32;;;;33386:26;;-1:-1:-1;;;;;33386:26:0;33374:39;;:11;:39;;;;;;;:54;;33323:32;33374:54;:43;:54;:::i;:::-;-1:-1:-1;33470:1:0;33435:21;;;:10;:21;;;;;:32;;;:36;;;33478:31;;;:35;;;33520:28;;:32;33255:724;;;33635:21;;;;:10;:21;;;;;:31;;;;33583:32;;;;;:84;;33635:31;33583:47;;33620:9;33583:47;:36;:47;:::i;:84::-;33686:39;33698:21;;;:10;:21;;;;;;;;:26;-1:-1:-1;;;;;33698:26:0;33686:39;;:11;:39;;;;;;33571:96;;-1:-1:-1;33686:54:0;;33571:96;33686:54;:43;:54;:::i;:::-;-1:-1:-1;33749:21:0;;;;:10;:21;;;;;:32;;;:47;;33786:9;33749:47;:36;:47;:::i;:::-;-1:-1:-1;33838:21:0;;;;:10;:21;;;;;:32;;;:47;;33875:9;33838:47;:36;:47;:::i;:::-;33803:21;;;;:10;:21;;;;;:32;;;:82;;;;33926:31;;;:46;;33962:9;33926:46;:35;:46;:::i;:::-;33892:21;;;;:10;:21;;;;;:31;;:80;33255:724;34024:38;34035:21;;;:10;:21;;;;;;;;:26;-1:-1:-1;;;;;34035:26:0;34024:38;;:10;:38;;;;;;:53;;34067:9;34024:53;:42;:53;:::i;:::-;33983:38;33994:21;;;:10;:21;;;;;;;;:26;;-1:-1:-1;;;;;33994:26:0;;;33983:38;;:10;:38;;;;;:94;;;;34136:26;;;;34124:39;;:11;:39;;;;:54;;34168:9;34124:54;:43;:54;:::i;:::-;34082:39;34094:21;;;:10;:21;;;;;;;;:26;-1:-1:-1;;;;;34094:26:0;;;34082:39;;:11;:39;;;;;:96;;;;34094:26;34191:13;:45;;-1:-1:-1;;;34191:45:0;;34214:10;34191:45;;;;;;;;;;;;:13;;;:22;;:45;;;;;34094:21;34191:45;;;;;;;:13;:45;;;5:2:-1;;;;30:1;27;20:12;5:2;34191:45:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;34191:45:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;34191:45:0;34183:54;;;;;;34262:21;;;;:10;:21;;;;;;;;;:32;;;;34296:31;;;;;34247:93;;;;;;;;;;;;34329:10;34247:93;;;;;;34251:9;;34247:93;;;;;;;;;;33054:1291;;:::o;29257:234::-;29376:5;;-1:-1:-1;;;;;29376:5:0;29362:10;:19;29354:42;;;;;-1:-1:-1;;;29354:42:0;;;;;;;;;;;;-1:-1:-1;;;29354:42:0;;;;;;;;;;;;;;;29401:18;;;;;;;:6;:18;;;;;;;;:35;;-1:-1:-1;;29401:35:0;;;;;;;29441:45;;;;-1:-1:-1;29441:30:0;;;;:45;;;;:::i;:::-;;29257:234;;;:::o;23617:39::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;23617:39:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;34352:1316::-;34428:20;;;;:9;:20;;;;;:25;-1:-1:-1;;;;;34428:25:0;34457:10;34428:39;;34420:63;;;;;-1:-1:-1;;;34420:63:0;;;;;;;;;;;;-1:-1:-1;;;34420:63:0;;;;;;;;;;;;;;;34509:1;34496:10;:14;:52;;;;-1:-1:-1;34521:20:0;;;;:9;:20;;;;;:27;;;34514:3;:34;;34496:52;:107;;;;-1:-1:-1;34557:20:0;;;;:9;:20;;;;;:30;;;:46;;34592:10;34557:46;:34;:46;:::i;:::-;-1:-1:-1;34552:51:0;34496:107;34488:116;;;;;;34609:14;34646:20;;;:9;:20;;;;;:30;;;34632:44;;34628:711;;;-1:-1:-1;34696:20:0;;;;:9;:20;;;;;;;;:31;;;;34757:25;;-1:-1:-1;;;;;34757:25:0;34746:37;;:10;:37;;;;;;;:52;;34696:31;34746:52;:41;:52;:::i;:::-;-1:-1:-1;34839:1:0;34805:20;;;:9;:20;;;;;:31;;;:35;;;34847:30;;;:34;;;34888:27;;:31;34628:711;;;35002:20;;;;:9;:20;;;;;:30;;;;34950:31;;;;;:83;;35002:30;34950:47;;34986:10;34950:47;:35;:47;:::i;:83::-;35052:37;35063:20;;;:9;:20;;;;;;;;:25;-1:-1:-1;;;;;35063:25:0;35052:37;;:10;:37;;;;;;34938:95;;-1:-1:-1;35052:52:0;;34938:95;35052:52;:41;:52;:::i;:::-;-1:-1:-1;35113:20:0;;;;:9;:20;;;;;:31;;;:46;;35149:9;35113:46;:35;:46;:::i;:::-;-1:-1:-1;35200:20:0;;;;:9;:20;;;;;:31;;;:46;;35236:9;35200:46;:35;:46;:::i;:::-;35166:20;;;;:9;:20;;;;;:31;;;:80;;;;35286:30;;;:46;;35321:10;35286:46;:34;:46;:::i;:::-;35253:20;;;;:9;:20;;;;;:30;;:79;34628:711;35383:37;35394:20;;;:9;:20;;;;;;;;:25;-1:-1:-1;;;;;35394:25:0;35383:37;;:10;:37;;;;;;:52;;35425:9;35383:52;:41;:52;:::i;:::-;35343:37;35354:20;;;:9;:20;;;;;;;;:25;;-1:-1:-1;;;;;35354:25:0;;;35343:37;;:10;:37;;;;;:92;;;;35354:25;35448:13;35487:20;;;;;;:25;35448:77;;-1:-1:-1;;;35448:77:0;;35475:10;35448:77;;;;35487:25;;;35448:77;;;;;;;;;;;;:13;;;;;:26;;:77;;;;;;;;;;;;;:13;:77;;;5:2:-1;;;;30:1;27;20:12;5:2;35448:77:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;35448:77:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;35448:77:0;35440:86;;;;;;35531:30;;:10;;:30;;;;;35551:9;;35531:30;;;;35551:9;35531:10;:30;;;;;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;-1:-1;35587:20:0;;;;:9;:20;;;;;;;;;:31;;;;35620:30;;;;;35571:92;;;;;;;;;;;;35652:10;35571:92;;;;;;35576:9;;35571:92;;;;;;;;;;34352:1316;;;:::o;21013:52::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;21013:52:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;21013:52:0;;;;;;;;;;;;;;;;-1:-1:-1;;21013:52:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;21013:52:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;21013:52:0;;;;;;;;;;;;;;;;-1:-1:-1;;21013:52:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;21013:52:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;21013:52:0;;;;;;;;;;;;;;;;-1:-1:-1;;21013:52:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;21013:52:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;21013:52:0;;;;;;;;;;;;;;;;-1:-1:-1;;21013:52:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;21013:52:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;21694:43;;;;;;;;;;;;;:::o;23449:46::-;;;;:::o;31773:407::-;31870:1;31857:10;:14;:31;;;;;31887:1;31875:9;:13;31857:31;:71;;;;-1:-1:-1;31917:10:0;31906:22;;;;:10;:22;;;;;;31892:36;;;31857:71;31849:80;;;;;;31934:17;31954:73;31978:10;31990;32002:9;32013:12;31961:65;;;;;;-1:-1:-1;;;;;31961:65:0;-1:-1:-1;;;;;31961:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49:4:-1;39:7;30;26:21;22:32;13:7;6:49;31961:65:0;;;31954:73;;;;;;;;;;;;;36:153:-1;66:2;61:3;58:11;36:153;;176:10;;164:23;;-1:-1;;139:12;;;;98:2;89:12;;;;114;36:153;;;299:10;344;;263:2;259:12;;;254:3;250:22;-1:-1;;246:30;311:9;;295:26;;;340:21;;377:20;365:33;;31954:73:0;;;;;;;-1:-1:-1;263:2;;-1:-1;;31954:73:0;;;;;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;31954:73:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;31954:73:0;32055:48;;;;;;;;;32061:10;32055:48;;;31954:73;32055:48;;;;;;;;;;;;;;;;;;;-1:-1:-1;32032:20:0;;;:9;:20;;;;;:71;;;;-1:-1:-1;;;;;;32032:71:0;-1:-1:-1;;;;;32032:71:0;;;;;;;;-1:-1:-1;32032:71:0;;;;;;;;;;;;;;;;;;;32113:62;;;;;;;;;;;;;;;;;;;;;;;31954:73;;-1:-1:-1;31954:73:0;;32113:62;;;;;;;;;;;31773:407;;;;:::o;29997:155::-;30089:55;30101:10;30113:6;30121:10;30133;30089:11;:55::i;23687:38::-;;;;;;;;;;;;;;;:::o;20892:70::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;20892:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21569:44;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;21569:44:0;;;;;;;:::o;30204:539::-;30322:10;30310:23;;;;:11;:23;;;;;;;;30301:52;;;;;-1:-1:-1;;;30301:52:0;;;;;;;;;;;;-1:-1:-1;;;30301:52:0;;;;;;;;;;;;;;;30373:13;;;;:5;:13;;;;;;;;30372:14;30364:44;;;;;-1:-1:-1;;;30364:44:0;;;;;;;;;;;;-1:-1:-1;;;30364:44:0;;;;;;;;;;;;;;;30428:13;;:38;;;-1:-1:-1;;;30428:38:0;;30460:4;30428:38;;;;;;30470:5;;-1:-1:-1;;;;;30428:13:0;;:23;;:38;;;;;;;;;;;;;;:13;:38;;;5:2:-1;;;;30:1;27;20:12;5:2;30428:38:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;30428:38:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;30428:38:0;:47;;30419:79;;;;;-1:-1:-1;;;30419:79:0;;;;;;;;;;;;-1:-1:-1;;;30419:79:0;;;;;;;;;;;;;;;30509:13;;:38;;;-1:-1:-1;;;30509:38:0;;-1:-1:-1;;;;;30509:38:0;;;;;;;;;;;;;;;:13;;;;;:22;;:38;;;;;;;;;;;;;;:13;;:38;;;5:2:-1;;;;30:1;27;20:12;5:2;30509:38:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;30509:38:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;30562:7:0;;30558:98;;30624:10;30612:23;;;;:11;:23;;;;;;:32;;30640:3;30612:32;:27;:32;:::i;:::-;30598:10;30586:23;;;;:11;:23;;;;;:58;30558:98;30666:13;;;;:5;:13;;;;;;;;;:20;;-1:-1:-1;;30666:20:0;30682:4;30666:20;;;30702:33;;;;;;;-1:-1:-1;;;;;30702:33:0;;;30672:6;;30702:33;;;;;;;;;30204:539;;;;:::o;31469:299::-;31534:1;31525:6;:10;:47;;;;-1:-1:-1;31551:10:0;31539:23;;;;:11;:23;;;;;;:33;-1:-1:-1;31539:33:0;31525:47;31517:56;;;;;;31616:10;31604:23;;;;:11;:23;;;;;;:35;;31632:6;31604:35;:27;:35;:::i;:::-;31590:10;31578:23;;;;:11;:23;;;;;;;;:61;;;;31652:13;;:42;;-1:-1:-1;;;31652:42:0;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;31652:13:0;;;;:22;;:42;;;;;;;;;;;;;:13;:42;;;5:2:-1;;;;30:1;27;20:12;5:2;31652:42:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;31652:42:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;31652:42:0;31644:51;;;;;;31719:10;31739:23;;;;:11;:23;;;;;;;;;;31705:58;;;;;;;;;;;;;;;;;;;;;;;;;31469:299;:::o;21741:44::-;;;;;;;;;;;;;:::o;23734:::-;;;;;;;;;;;;;;;:::o;6678:181::-;6736:7;6768:5;;;6792:6;;;;6784:46;;;;;-1:-1:-1;;;6784:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;6850:1;-1:-1:-1;6678:181:0;;;;;:::o;7134:136::-;7192:7;7219:43;7223:1;7226;7219:43;;;;;;;;;;;;;;;;;:3;:43::i;8050:471::-;8108:7;8353:6;8349:47;;-1:-1:-1;8383:1:0;8376:8;;8349:47;8420:5;;;8424:1;8420;:5;:1;8444:5;;;;;:10;8436:56;;;;-1:-1:-1;;;8436:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8989:132;9047:7;9074:39;9078:1;9081;9074:39;;;;;;;;;;;;;;;;;:3;:39::i;7607:192::-;7693:7;7729:12;7721:6;;;;7713:29;;;;-1:-1:-1;;;7713:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;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;7713:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;7765:5:0;;;7607:192::o;9651:345::-;9737:7;9839:12;9832:5;9824:28;;;;-1:-1:-1;;;9824:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27:10:-1;;8:100;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;9824:28:0;;9863:9;9879:1;9875;:5;;;;;;;9651:345;-1:-1:-1;;;;;9651:345:0:o;19737:21173::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;19737:21173:0;;;-1:-1:-1;19737:21173:0;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;:::o
Swarm Source
bzzr://0e2fe42a2ac3f99fa7fd348e6f043cbbe50556e074ea3a847d3dc9513b0aaea4
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.